├── .clang-tidy ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── breed └── breed.sh ├── examples ├── clang │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── Submake │ ├── llvm.wasm │ ├── main.c │ └── sys │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bin │ │ ├── addr2line │ │ ├── ar │ │ ├── c++filt │ │ ├── clang │ │ ├── clang++ │ │ ├── driverdriver.py │ │ ├── objcopy │ │ ├── objdump │ │ ├── ranlib │ │ ├── size │ │ ├── strip │ │ └── wasm-ld │ │ ├── include │ │ ├── __stdarg___gnuc_va_list.h │ │ ├── __stdarg___va_copy.h │ │ ├── __stdarg_header_macro.h │ │ ├── __stdarg_va_arg.h │ │ ├── __stdarg_va_copy.h │ │ ├── __stdarg_va_list.h │ │ ├── __stddef_header_macro.h │ │ ├── __stddef_max_align_t.h │ │ ├── __stddef_null.h │ │ ├── __stddef_nullptr_t.h │ │ ├── __stddef_offsetof.h │ │ ├── __stddef_ptrdiff_t.h │ │ ├── __stddef_rsize_t.h │ │ ├── __stddef_size_t.h │ │ ├── __stddef_unreachable.h │ │ ├── __stddef_wchar_t.h │ │ ├── __stddef_wint_t.h │ │ ├── builtins.h │ │ ├── c++ │ │ │ └── v1 │ │ │ │ ├── __algorithm │ │ │ │ ├── adjacent_find.h │ │ │ │ ├── all_of.h │ │ │ │ ├── any_of.h │ │ │ │ ├── binary_search.h │ │ │ │ ├── clamp.h │ │ │ │ ├── comp.h │ │ │ │ ├── comp_ref_type.h │ │ │ │ ├── copy.h │ │ │ │ ├── copy_backward.h │ │ │ │ ├── copy_if.h │ │ │ │ ├── copy_move_common.h │ │ │ │ ├── copy_n.h │ │ │ │ ├── count.h │ │ │ │ ├── count_if.h │ │ │ │ ├── equal.h │ │ │ │ ├── equal_range.h │ │ │ │ ├── fill.h │ │ │ │ ├── fill_n.h │ │ │ │ ├── find.h │ │ │ │ ├── find_end.h │ │ │ │ ├── find_first_of.h │ │ │ │ ├── find_if.h │ │ │ │ ├── find_if_not.h │ │ │ │ ├── find_segment_if.h │ │ │ │ ├── fold.h │ │ │ │ ├── for_each.h │ │ │ │ ├── for_each_n.h │ │ │ │ ├── for_each_segment.h │ │ │ │ ├── generate.h │ │ │ │ ├── generate_n.h │ │ │ │ ├── half_positive.h │ │ │ │ ├── in_found_result.h │ │ │ │ ├── in_fun_result.h │ │ │ │ ├── in_in_out_result.h │ │ │ │ ├── in_in_result.h │ │ │ │ ├── in_out_out_result.h │ │ │ │ ├── in_out_result.h │ │ │ │ ├── includes.h │ │ │ │ ├── inplace_merge.h │ │ │ │ ├── is_heap.h │ │ │ │ ├── is_heap_until.h │ │ │ │ ├── is_partitioned.h │ │ │ │ ├── is_permutation.h │ │ │ │ ├── is_sorted.h │ │ │ │ ├── is_sorted_until.h │ │ │ │ ├── iter_swap.h │ │ │ │ ├── iterator_operations.h │ │ │ │ ├── lexicographical_compare.h │ │ │ │ ├── lexicographical_compare_three_way.h │ │ │ │ ├── lower_bound.h │ │ │ │ ├── make_heap.h │ │ │ │ ├── make_projected.h │ │ │ │ ├── max.h │ │ │ │ ├── max_element.h │ │ │ │ ├── merge.h │ │ │ │ ├── min.h │ │ │ │ ├── min_element.h │ │ │ │ ├── min_max_result.h │ │ │ │ ├── minmax.h │ │ │ │ ├── minmax_element.h │ │ │ │ ├── mismatch.h │ │ │ │ ├── move.h │ │ │ │ ├── move_backward.h │ │ │ │ ├── next_permutation.h │ │ │ │ ├── none_of.h │ │ │ │ ├── nth_element.h │ │ │ │ ├── partial_sort.h │ │ │ │ ├── partial_sort_copy.h │ │ │ │ ├── partition.h │ │ │ │ ├── partition_copy.h │ │ │ │ ├── partition_point.h │ │ │ │ ├── pop_heap.h │ │ │ │ ├── prev_permutation.h │ │ │ │ ├── pstl.h │ │ │ │ ├── push_heap.h │ │ │ │ ├── ranges_adjacent_find.h │ │ │ │ ├── ranges_all_of.h │ │ │ │ ├── ranges_any_of.h │ │ │ │ ├── ranges_binary_search.h │ │ │ │ ├── ranges_clamp.h │ │ │ │ ├── ranges_contains.h │ │ │ │ ├── ranges_contains_subrange.h │ │ │ │ ├── ranges_copy.h │ │ │ │ ├── ranges_copy_backward.h │ │ │ │ ├── ranges_copy_if.h │ │ │ │ ├── ranges_copy_n.h │ │ │ │ ├── ranges_count.h │ │ │ │ ├── ranges_count_if.h │ │ │ │ ├── ranges_ends_with.h │ │ │ │ ├── ranges_equal.h │ │ │ │ ├── ranges_equal_range.h │ │ │ │ ├── ranges_fill.h │ │ │ │ ├── ranges_fill_n.h │ │ │ │ ├── ranges_find.h │ │ │ │ ├── ranges_find_end.h │ │ │ │ ├── ranges_find_first_of.h │ │ │ │ ├── ranges_find_if.h │ │ │ │ ├── ranges_find_if_not.h │ │ │ │ ├── ranges_for_each.h │ │ │ │ ├── ranges_for_each_n.h │ │ │ │ ├── ranges_generate.h │ │ │ │ ├── ranges_generate_n.h │ │ │ │ ├── ranges_includes.h │ │ │ │ ├── ranges_inplace_merge.h │ │ │ │ ├── ranges_is_heap.h │ │ │ │ ├── ranges_is_heap_until.h │ │ │ │ ├── ranges_is_partitioned.h │ │ │ │ ├── ranges_is_permutation.h │ │ │ │ ├── ranges_is_sorted.h │ │ │ │ ├── ranges_is_sorted_until.h │ │ │ │ ├── ranges_iterator_concept.h │ │ │ │ ├── ranges_lexicographical_compare.h │ │ │ │ ├── ranges_lower_bound.h │ │ │ │ ├── ranges_make_heap.h │ │ │ │ ├── ranges_max.h │ │ │ │ ├── ranges_max_element.h │ │ │ │ ├── ranges_merge.h │ │ │ │ ├── ranges_min.h │ │ │ │ ├── ranges_min_element.h │ │ │ │ ├── ranges_minmax.h │ │ │ │ ├── ranges_minmax_element.h │ │ │ │ ├── ranges_mismatch.h │ │ │ │ ├── ranges_move.h │ │ │ │ ├── ranges_move_backward.h │ │ │ │ ├── ranges_next_permutation.h │ │ │ │ ├── ranges_none_of.h │ │ │ │ ├── ranges_nth_element.h │ │ │ │ ├── ranges_partial_sort.h │ │ │ │ ├── ranges_partial_sort_copy.h │ │ │ │ ├── ranges_partition.h │ │ │ │ ├── ranges_partition_copy.h │ │ │ │ ├── ranges_partition_point.h │ │ │ │ ├── ranges_pop_heap.h │ │ │ │ ├── ranges_prev_permutation.h │ │ │ │ ├── ranges_push_heap.h │ │ │ │ ├── ranges_remove.h │ │ │ │ ├── ranges_remove_copy.h │ │ │ │ ├── ranges_remove_copy_if.h │ │ │ │ ├── ranges_remove_if.h │ │ │ │ ├── ranges_replace.h │ │ │ │ ├── ranges_replace_copy.h │ │ │ │ ├── ranges_replace_copy_if.h │ │ │ │ ├── ranges_replace_if.h │ │ │ │ ├── ranges_reverse.h │ │ │ │ ├── ranges_reverse_copy.h │ │ │ │ ├── ranges_rotate.h │ │ │ │ ├── ranges_rotate_copy.h │ │ │ │ ├── ranges_sample.h │ │ │ │ ├── ranges_search.h │ │ │ │ ├── ranges_search_n.h │ │ │ │ ├── ranges_set_difference.h │ │ │ │ ├── ranges_set_intersection.h │ │ │ │ ├── ranges_set_symmetric_difference.h │ │ │ │ ├── ranges_set_union.h │ │ │ │ ├── ranges_shuffle.h │ │ │ │ ├── ranges_sort.h │ │ │ │ ├── ranges_sort_heap.h │ │ │ │ ├── ranges_stable_partition.h │ │ │ │ ├── ranges_stable_sort.h │ │ │ │ ├── ranges_starts_with.h │ │ │ │ ├── ranges_swap_ranges.h │ │ │ │ ├── ranges_transform.h │ │ │ │ ├── ranges_unique.h │ │ │ │ ├── ranges_unique_copy.h │ │ │ │ ├── ranges_upper_bound.h │ │ │ │ ├── remove.h │ │ │ │ ├── remove_copy.h │ │ │ │ ├── remove_copy_if.h │ │ │ │ ├── remove_if.h │ │ │ │ ├── replace.h │ │ │ │ ├── replace_copy.h │ │ │ │ ├── replace_copy_if.h │ │ │ │ ├── replace_if.h │ │ │ │ ├── reverse.h │ │ │ │ ├── reverse_copy.h │ │ │ │ ├── rotate.h │ │ │ │ ├── rotate_copy.h │ │ │ │ ├── sample.h │ │ │ │ ├── search.h │ │ │ │ ├── search_n.h │ │ │ │ ├── set_difference.h │ │ │ │ ├── set_intersection.h │ │ │ │ ├── set_symmetric_difference.h │ │ │ │ ├── set_union.h │ │ │ │ ├── shift_left.h │ │ │ │ ├── shift_right.h │ │ │ │ ├── shuffle.h │ │ │ │ ├── sift_down.h │ │ │ │ ├── simd_utils.h │ │ │ │ ├── sort.h │ │ │ │ ├── sort_heap.h │ │ │ │ ├── stable_partition.h │ │ │ │ ├── stable_sort.h │ │ │ │ ├── swap_ranges.h │ │ │ │ ├── three_way_comp_ref_type.h │ │ │ │ ├── transform.h │ │ │ │ ├── uniform_random_bit_generator_adaptor.h │ │ │ │ ├── unique.h │ │ │ │ ├── unique_copy.h │ │ │ │ ├── unwrap_iter.h │ │ │ │ ├── unwrap_range.h │ │ │ │ └── upper_bound.h │ │ │ │ ├── __assert │ │ │ │ ├── __assertion_handler │ │ │ │ ├── __atomic │ │ │ │ ├── aliases.h │ │ │ │ ├── atomic.h │ │ │ │ ├── atomic_base.h │ │ │ │ ├── atomic_flag.h │ │ │ │ ├── atomic_init.h │ │ │ │ ├── atomic_lock_free.h │ │ │ │ ├── atomic_ref.h │ │ │ │ ├── atomic_sync.h │ │ │ │ ├── check_memory_order.h │ │ │ │ ├── contention_t.h │ │ │ │ ├── cxx_atomic_impl.h │ │ │ │ ├── fence.h │ │ │ │ ├── is_always_lock_free.h │ │ │ │ ├── kill_dependency.h │ │ │ │ ├── memory_order.h │ │ │ │ └── to_gcc_order.h │ │ │ │ ├── __bit │ │ │ │ ├── bit_cast.h │ │ │ │ ├── bit_ceil.h │ │ │ │ ├── bit_floor.h │ │ │ │ ├── bit_log2.h │ │ │ │ ├── bit_width.h │ │ │ │ ├── blsr.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── countl.h │ │ │ │ ├── countr.h │ │ │ │ ├── endian.h │ │ │ │ ├── has_single_bit.h │ │ │ │ ├── invert_if.h │ │ │ │ ├── popcount.h │ │ │ │ └── rotate.h │ │ │ │ ├── __bit_reference │ │ │ │ ├── __charconv │ │ │ │ ├── chars_format.h │ │ │ │ ├── from_chars_integral.h │ │ │ │ ├── from_chars_result.h │ │ │ │ ├── tables.h │ │ │ │ ├── to_chars.h │ │ │ │ ├── to_chars_base_10.h │ │ │ │ ├── to_chars_floating_point.h │ │ │ │ ├── to_chars_integral.h │ │ │ │ ├── to_chars_result.h │ │ │ │ └── traits.h │ │ │ │ ├── __chrono │ │ │ │ ├── calendar.h │ │ │ │ ├── concepts.h │ │ │ │ ├── convert_to_timespec.h │ │ │ │ ├── convert_to_tm.h │ │ │ │ ├── day.h │ │ │ │ ├── duration.h │ │ │ │ ├── exception.h │ │ │ │ ├── file_clock.h │ │ │ │ ├── formatter.h │ │ │ │ ├── hh_mm_ss.h │ │ │ │ ├── high_resolution_clock.h │ │ │ │ ├── leap_second.h │ │ │ │ ├── literals.h │ │ │ │ ├── local_info.h │ │ │ │ ├── month.h │ │ │ │ ├── month_weekday.h │ │ │ │ ├── monthday.h │ │ │ │ ├── ostream.h │ │ │ │ ├── parser_std_format_spec.h │ │ │ │ ├── statically_widen.h │ │ │ │ ├── steady_clock.h │ │ │ │ ├── sys_info.h │ │ │ │ ├── system_clock.h │ │ │ │ ├── time_point.h │ │ │ │ ├── time_zone.h │ │ │ │ ├── time_zone_link.h │ │ │ │ ├── tzdb.h │ │ │ │ ├── tzdb_list.h │ │ │ │ ├── weekday.h │ │ │ │ ├── year.h │ │ │ │ ├── year_month.h │ │ │ │ ├── year_month_day.h │ │ │ │ ├── year_month_weekday.h │ │ │ │ └── zoned_time.h │ │ │ │ ├── __compare │ │ │ │ ├── common_comparison_category.h │ │ │ │ ├── compare_partial_order_fallback.h │ │ │ │ ├── compare_strong_order_fallback.h │ │ │ │ ├── compare_three_way.h │ │ │ │ ├── compare_three_way_result.h │ │ │ │ ├── compare_weak_order_fallback.h │ │ │ │ ├── is_eq.h │ │ │ │ ├── ordering.h │ │ │ │ ├── partial_order.h │ │ │ │ ├── strong_order.h │ │ │ │ ├── synth_three_way.h │ │ │ │ ├── three_way_comparable.h │ │ │ │ └── weak_order.h │ │ │ │ ├── __concepts │ │ │ │ ├── arithmetic.h │ │ │ │ ├── assignable.h │ │ │ │ ├── boolean_testable.h │ │ │ │ ├── class_or_enum.h │ │ │ │ ├── common_reference_with.h │ │ │ │ ├── common_with.h │ │ │ │ ├── constructible.h │ │ │ │ ├── convertible_to.h │ │ │ │ ├── copyable.h │ │ │ │ ├── derived_from.h │ │ │ │ ├── destructible.h │ │ │ │ ├── different_from.h │ │ │ │ ├── equality_comparable.h │ │ │ │ ├── invocable.h │ │ │ │ ├── movable.h │ │ │ │ ├── predicate.h │ │ │ │ ├── regular.h │ │ │ │ ├── relation.h │ │ │ │ ├── same_as.h │ │ │ │ ├── semiregular.h │ │ │ │ ├── swappable.h │ │ │ │ └── totally_ordered.h │ │ │ │ ├── __condition_variable │ │ │ │ └── condition_variable.h │ │ │ │ ├── __config │ │ │ │ ├── __config_site │ │ │ │ ├── __configuration │ │ │ │ ├── abi.h │ │ │ │ ├── availability.h │ │ │ │ ├── compiler.h │ │ │ │ ├── language.h │ │ │ │ └── platform.h │ │ │ │ ├── __coroutine │ │ │ │ ├── coroutine_handle.h │ │ │ │ ├── coroutine_traits.h │ │ │ │ ├── noop_coroutine_handle.h │ │ │ │ └── trivial_awaitables.h │ │ │ │ ├── __cxxabi_config.h │ │ │ │ ├── __debug_utils │ │ │ │ ├── randomize_range.h │ │ │ │ ├── sanitizers.h │ │ │ │ └── strict_weak_ordering_check.h │ │ │ │ ├── __exception │ │ │ │ ├── exception.h │ │ │ │ ├── exception_ptr.h │ │ │ │ ├── nested_exception.h │ │ │ │ ├── operations.h │ │ │ │ └── terminate.h │ │ │ │ ├── __expected │ │ │ │ ├── bad_expected_access.h │ │ │ │ ├── expected.h │ │ │ │ ├── unexpect.h │ │ │ │ └── unexpected.h │ │ │ │ ├── __filesystem │ │ │ │ ├── copy_options.h │ │ │ │ ├── directory_entry.h │ │ │ │ ├── directory_iterator.h │ │ │ │ ├── directory_options.h │ │ │ │ ├── file_status.h │ │ │ │ ├── file_time_type.h │ │ │ │ ├── file_type.h │ │ │ │ ├── filesystem_error.h │ │ │ │ ├── operations.h │ │ │ │ ├── path.h │ │ │ │ ├── path_iterator.h │ │ │ │ ├── perm_options.h │ │ │ │ ├── perms.h │ │ │ │ ├── recursive_directory_iterator.h │ │ │ │ ├── space_info.h │ │ │ │ └── u8path.h │ │ │ │ ├── __format │ │ │ │ ├── buffer.h │ │ │ │ ├── concepts.h │ │ │ │ ├── container_adaptor.h │ │ │ │ ├── enable_insertable.h │ │ │ │ ├── escaped_output_table.h │ │ │ │ ├── extended_grapheme_cluster_table.h │ │ │ │ ├── format_arg.h │ │ │ │ ├── format_arg_store.h │ │ │ │ ├── format_args.h │ │ │ │ ├── format_context.h │ │ │ │ ├── format_error.h │ │ │ │ ├── format_functions.h │ │ │ │ ├── format_parse_context.h │ │ │ │ ├── format_string.h │ │ │ │ ├── format_to_n_result.h │ │ │ │ ├── formatter.h │ │ │ │ ├── formatter_bool.h │ │ │ │ ├── formatter_char.h │ │ │ │ ├── formatter_floating_point.h │ │ │ │ ├── formatter_integer.h │ │ │ │ ├── formatter_integral.h │ │ │ │ ├── formatter_output.h │ │ │ │ ├── formatter_pointer.h │ │ │ │ ├── formatter_string.h │ │ │ │ ├── formatter_tuple.h │ │ │ │ ├── indic_conjunct_break_table.h │ │ │ │ ├── parser_std_format_spec.h │ │ │ │ ├── range_default_formatter.h │ │ │ │ ├── range_formatter.h │ │ │ │ ├── unicode.h │ │ │ │ ├── width_estimation_table.h │ │ │ │ └── write_escaped.h │ │ │ │ ├── __functional │ │ │ │ ├── binary_function.h │ │ │ │ ├── binary_negate.h │ │ │ │ ├── bind.h │ │ │ │ ├── bind_back.h │ │ │ │ ├── bind_front.h │ │ │ │ ├── binder1st.h │ │ │ │ ├── binder2nd.h │ │ │ │ ├── boyer_moore_searcher.h │ │ │ │ ├── compose.h │ │ │ │ ├── default_searcher.h │ │ │ │ ├── function.h │ │ │ │ ├── hash.h │ │ │ │ ├── identity.h │ │ │ │ ├── invoke.h │ │ │ │ ├── is_transparent.h │ │ │ │ ├── mem_fn.h │ │ │ │ ├── mem_fun_ref.h │ │ │ │ ├── not_fn.h │ │ │ │ ├── operations.h │ │ │ │ ├── perfect_forward.h │ │ │ │ ├── pointer_to_binary_function.h │ │ │ │ ├── pointer_to_unary_function.h │ │ │ │ ├── ranges_operations.h │ │ │ │ ├── reference_wrapper.h │ │ │ │ ├── unary_function.h │ │ │ │ ├── unary_negate.h │ │ │ │ └── weak_result_type.h │ │ │ │ ├── __fwd │ │ │ │ ├── array.h │ │ │ │ ├── bit_reference.h │ │ │ │ ├── complex.h │ │ │ │ ├── deque.h │ │ │ │ ├── format.h │ │ │ │ ├── fstream.h │ │ │ │ ├── functional.h │ │ │ │ ├── ios.h │ │ │ │ ├── istream.h │ │ │ │ ├── mdspan.h │ │ │ │ ├── memory.h │ │ │ │ ├── memory_resource.h │ │ │ │ ├── ostream.h │ │ │ │ ├── pair.h │ │ │ │ ├── queue.h │ │ │ │ ├── span.h │ │ │ │ ├── sstream.h │ │ │ │ ├── stack.h │ │ │ │ ├── streambuf.h │ │ │ │ ├── string.h │ │ │ │ ├── string_view.h │ │ │ │ ├── subrange.h │ │ │ │ ├── tuple.h │ │ │ │ └── vector.h │ │ │ │ ├── __hash_table │ │ │ │ ├── __ios │ │ │ │ └── fpos.h │ │ │ │ ├── __iterator │ │ │ │ ├── access.h │ │ │ │ ├── advance.h │ │ │ │ ├── aliasing_iterator.h │ │ │ │ ├── back_insert_iterator.h │ │ │ │ ├── bounded_iter.h │ │ │ │ ├── common_iterator.h │ │ │ │ ├── concepts.h │ │ │ │ ├── counted_iterator.h │ │ │ │ ├── cpp17_iterator_concepts.h │ │ │ │ ├── data.h │ │ │ │ ├── default_sentinel.h │ │ │ │ ├── distance.h │ │ │ │ ├── empty.h │ │ │ │ ├── erase_if_container.h │ │ │ │ ├── front_insert_iterator.h │ │ │ │ ├── incrementable_traits.h │ │ │ │ ├── indirectly_comparable.h │ │ │ │ ├── insert_iterator.h │ │ │ │ ├── istream_iterator.h │ │ │ │ ├── istreambuf_iterator.h │ │ │ │ ├── iter_move.h │ │ │ │ ├── iter_swap.h │ │ │ │ ├── iterator.h │ │ │ │ ├── iterator_traits.h │ │ │ │ ├── iterator_with_data.h │ │ │ │ ├── mergeable.h │ │ │ │ ├── move_iterator.h │ │ │ │ ├── move_sentinel.h │ │ │ │ ├── next.h │ │ │ │ ├── ostream_iterator.h │ │ │ │ ├── ostreambuf_iterator.h │ │ │ │ ├── permutable.h │ │ │ │ ├── prev.h │ │ │ │ ├── projected.h │ │ │ │ ├── ranges_iterator_traits.h │ │ │ │ ├── readable_traits.h │ │ │ │ ├── reverse_access.h │ │ │ │ ├── reverse_iterator.h │ │ │ │ ├── segmented_iterator.h │ │ │ │ ├── size.h │ │ │ │ ├── sortable.h │ │ │ │ ├── unreachable_sentinel.h │ │ │ │ └── wrap_iter.h │ │ │ │ ├── __locale │ │ │ │ ├── __locale_dir │ │ │ │ ├── locale_base_api.h │ │ │ │ └── locale_base_api │ │ │ │ │ ├── android.h │ │ │ │ │ ├── bsd_locale_defaults.h │ │ │ │ │ ├── bsd_locale_fallbacks.h │ │ │ │ │ ├── fuchsia.h │ │ │ │ │ ├── ibm.h │ │ │ │ │ ├── locale_guard.h │ │ │ │ │ ├── musl.h │ │ │ │ │ ├── newlib.h │ │ │ │ │ ├── openbsd.h │ │ │ │ │ └── win32.h │ │ │ │ ├── __math │ │ │ │ ├── abs.h │ │ │ │ ├── copysign.h │ │ │ │ ├── error_functions.h │ │ │ │ ├── exponential_functions.h │ │ │ │ ├── fdim.h │ │ │ │ ├── fma.h │ │ │ │ ├── gamma.h │ │ │ │ ├── hyperbolic_functions.h │ │ │ │ ├── hypot.h │ │ │ │ ├── inverse_hyperbolic_functions.h │ │ │ │ ├── inverse_trigonometric_functions.h │ │ │ │ ├── logarithms.h │ │ │ │ ├── min_max.h │ │ │ │ ├── modulo.h │ │ │ │ ├── remainder.h │ │ │ │ ├── roots.h │ │ │ │ ├── rounding_functions.h │ │ │ │ ├── traits.h │ │ │ │ └── trigonometric_functions.h │ │ │ │ ├── __mbstate_t.h │ │ │ │ ├── __mdspan │ │ │ │ ├── default_accessor.h │ │ │ │ ├── extents.h │ │ │ │ ├── layout_left.h │ │ │ │ ├── layout_right.h │ │ │ │ ├── layout_stride.h │ │ │ │ └── mdspan.h │ │ │ │ ├── __memory │ │ │ │ ├── addressof.h │ │ │ │ ├── align.h │ │ │ │ ├── aligned_alloc.h │ │ │ │ ├── allocate_at_least.h │ │ │ │ ├── allocation_guard.h │ │ │ │ ├── allocator.h │ │ │ │ ├── allocator_arg_t.h │ │ │ │ ├── allocator_destructor.h │ │ │ │ ├── allocator_traits.h │ │ │ │ ├── assume_aligned.h │ │ │ │ ├── auto_ptr.h │ │ │ │ ├── builtin_new_allocator.h │ │ │ │ ├── compressed_pair.h │ │ │ │ ├── concepts.h │ │ │ │ ├── construct_at.h │ │ │ │ ├── destruct_n.h │ │ │ │ ├── pointer_traits.h │ │ │ │ ├── ranges_construct_at.h │ │ │ │ ├── ranges_uninitialized_algorithms.h │ │ │ │ ├── raw_storage_iterator.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── swap_allocator.h │ │ │ │ ├── temp_value.h │ │ │ │ ├── temporary_buffer.h │ │ │ │ ├── uninitialized_algorithms.h │ │ │ │ ├── unique_ptr.h │ │ │ │ ├── uses_allocator.h │ │ │ │ ├── uses_allocator_construction.h │ │ │ │ └── voidify.h │ │ │ │ ├── __memory_resource │ │ │ │ ├── memory_resource.h │ │ │ │ ├── monotonic_buffer_resource.h │ │ │ │ ├── polymorphic_allocator.h │ │ │ │ ├── pool_options.h │ │ │ │ ├── synchronized_pool_resource.h │ │ │ │ └── unsynchronized_pool_resource.h │ │ │ │ ├── __mutex │ │ │ │ ├── lock_guard.h │ │ │ │ ├── mutex.h │ │ │ │ ├── once_flag.h │ │ │ │ ├── tag_types.h │ │ │ │ └── unique_lock.h │ │ │ │ ├── __node_handle │ │ │ │ ├── __numeric │ │ │ │ ├── accumulate.h │ │ │ │ ├── adjacent_difference.h │ │ │ │ ├── exclusive_scan.h │ │ │ │ ├── gcd_lcm.h │ │ │ │ ├── inclusive_scan.h │ │ │ │ ├── inner_product.h │ │ │ │ ├── iota.h │ │ │ │ ├── midpoint.h │ │ │ │ ├── partial_sum.h │ │ │ │ ├── pstl.h │ │ │ │ ├── reduce.h │ │ │ │ ├── saturation_arithmetic.h │ │ │ │ ├── transform_exclusive_scan.h │ │ │ │ ├── transform_inclusive_scan.h │ │ │ │ └── transform_reduce.h │ │ │ │ ├── __ostream │ │ │ │ ├── basic_ostream.h │ │ │ │ └── print.h │ │ │ │ ├── __pstl │ │ │ │ ├── backend.h │ │ │ │ ├── backend_fwd.h │ │ │ │ ├── backends │ │ │ │ │ ├── default.h │ │ │ │ │ ├── libdispatch.h │ │ │ │ │ ├── serial.h │ │ │ │ │ └── std_thread.h │ │ │ │ ├── cpu_algos │ │ │ │ │ ├── any_of.h │ │ │ │ │ ├── cpu_traits.h │ │ │ │ │ ├── fill.h │ │ │ │ │ ├── find_if.h │ │ │ │ │ ├── for_each.h │ │ │ │ │ ├── merge.h │ │ │ │ │ ├── stable_sort.h │ │ │ │ │ ├── transform.h │ │ │ │ │ └── transform_reduce.h │ │ │ │ ├── dispatch.h │ │ │ │ └── handle_exception.h │ │ │ │ ├── __random │ │ │ │ ├── bernoulli_distribution.h │ │ │ │ ├── binomial_distribution.h │ │ │ │ ├── cauchy_distribution.h │ │ │ │ ├── chi_squared_distribution.h │ │ │ │ ├── clamp_to_integral.h │ │ │ │ ├── default_random_engine.h │ │ │ │ ├── discard_block_engine.h │ │ │ │ ├── discrete_distribution.h │ │ │ │ ├── exponential_distribution.h │ │ │ │ ├── extreme_value_distribution.h │ │ │ │ ├── fisher_f_distribution.h │ │ │ │ ├── gamma_distribution.h │ │ │ │ ├── generate_canonical.h │ │ │ │ ├── geometric_distribution.h │ │ │ │ ├── independent_bits_engine.h │ │ │ │ ├── is_seed_sequence.h │ │ │ │ ├── is_valid.h │ │ │ │ ├── knuth_b.h │ │ │ │ ├── linear_congruential_engine.h │ │ │ │ ├── log2.h │ │ │ │ ├── lognormal_distribution.h │ │ │ │ ├── mersenne_twister_engine.h │ │ │ │ ├── negative_binomial_distribution.h │ │ │ │ ├── normal_distribution.h │ │ │ │ ├── piecewise_constant_distribution.h │ │ │ │ ├── piecewise_linear_distribution.h │ │ │ │ ├── poisson_distribution.h │ │ │ │ ├── random_device.h │ │ │ │ ├── ranlux.h │ │ │ │ ├── seed_seq.h │ │ │ │ ├── shuffle_order_engine.h │ │ │ │ ├── student_t_distribution.h │ │ │ │ ├── subtract_with_carry_engine.h │ │ │ │ ├── uniform_int_distribution.h │ │ │ │ ├── uniform_random_bit_generator.h │ │ │ │ ├── uniform_real_distribution.h │ │ │ │ └── weibull_distribution.h │ │ │ │ ├── __ranges │ │ │ │ ├── access.h │ │ │ │ ├── all.h │ │ │ │ ├── as_rvalue_view.h │ │ │ │ ├── chunk_by_view.h │ │ │ │ ├── common_view.h │ │ │ │ ├── concepts.h │ │ │ │ ├── container_compatible_range.h │ │ │ │ ├── counted.h │ │ │ │ ├── dangling.h │ │ │ │ ├── data.h │ │ │ │ ├── drop_view.h │ │ │ │ ├── drop_while_view.h │ │ │ │ ├── elements_view.h │ │ │ │ ├── empty.h │ │ │ │ ├── empty_view.h │ │ │ │ ├── enable_borrowed_range.h │ │ │ │ ├── enable_view.h │ │ │ │ ├── filter_view.h │ │ │ │ ├── from_range.h │ │ │ │ ├── iota_view.h │ │ │ │ ├── istream_view.h │ │ │ │ ├── join_view.h │ │ │ │ ├── lazy_split_view.h │ │ │ │ ├── movable_box.h │ │ │ │ ├── non_propagating_cache.h │ │ │ │ ├── owning_view.h │ │ │ │ ├── range_adaptor.h │ │ │ │ ├── rbegin.h │ │ │ │ ├── ref_view.h │ │ │ │ ├── rend.h │ │ │ │ ├── repeat_view.h │ │ │ │ ├── reverse_view.h │ │ │ │ ├── single_view.h │ │ │ │ ├── size.h │ │ │ │ ├── split_view.h │ │ │ │ ├── subrange.h │ │ │ │ ├── take_view.h │ │ │ │ ├── take_while_view.h │ │ │ │ ├── to.h │ │ │ │ ├── transform_view.h │ │ │ │ ├── view_interface.h │ │ │ │ ├── views.h │ │ │ │ └── zip_view.h │ │ │ │ ├── __split_buffer │ │ │ │ ├── __std_clang_module │ │ │ │ ├── __std_mbstate_t.h │ │ │ │ ├── __stop_token │ │ │ │ ├── atomic_unique_lock.h │ │ │ │ ├── intrusive_list_view.h │ │ │ │ ├── intrusive_shared_ptr.h │ │ │ │ ├── stop_callback.h │ │ │ │ ├── stop_source.h │ │ │ │ ├── stop_state.h │ │ │ │ └── stop_token.h │ │ │ │ ├── __string │ │ │ │ ├── char_traits.h │ │ │ │ ├── constexpr_c_functions.h │ │ │ │ └── extern_template_lists.h │ │ │ │ ├── __support │ │ │ │ ├── ibm │ │ │ │ │ ├── gettod_zos.h │ │ │ │ │ ├── locale_mgmt_zos.h │ │ │ │ │ └── nanosleep.h │ │ │ │ └── xlocale │ │ │ │ │ ├── __nop_locale_mgmt.h │ │ │ │ │ ├── __posix_l_fallback.h │ │ │ │ │ └── __strtonum_fallback.h │ │ │ │ ├── __system_error │ │ │ │ ├── errc.h │ │ │ │ ├── error_category.h │ │ │ │ ├── error_code.h │ │ │ │ ├── error_condition.h │ │ │ │ └── system_error.h │ │ │ │ ├── __thread │ │ │ │ ├── formatter.h │ │ │ │ ├── id.h │ │ │ │ ├── jthread.h │ │ │ │ ├── poll_with_backoff.h │ │ │ │ ├── support.h │ │ │ │ ├── support │ │ │ │ │ ├── c11.h │ │ │ │ │ ├── external.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ └── windows.h │ │ │ │ ├── this_thread.h │ │ │ │ ├── thread.h │ │ │ │ └── timed_backoff_policy.h │ │ │ │ ├── __tree │ │ │ │ ├── __tuple │ │ │ │ ├── find_index.h │ │ │ │ ├── ignore.h │ │ │ │ ├── make_tuple_types.h │ │ │ │ ├── sfinae_helpers.h │ │ │ │ ├── tuple_element.h │ │ │ │ ├── tuple_indices.h │ │ │ │ ├── tuple_like.h │ │ │ │ ├── tuple_like_ext.h │ │ │ │ ├── tuple_like_no_subrange.h │ │ │ │ ├── tuple_size.h │ │ │ │ └── tuple_types.h │ │ │ │ ├── __type_traits │ │ │ │ ├── add_const.h │ │ │ │ ├── add_cv.h │ │ │ │ ├── add_lvalue_reference.h │ │ │ │ ├── add_pointer.h │ │ │ │ ├── add_rvalue_reference.h │ │ │ │ ├── add_volatile.h │ │ │ │ ├── aligned_storage.h │ │ │ │ ├── aligned_union.h │ │ │ │ ├── alignment_of.h │ │ │ │ ├── can_extract_key.h │ │ │ │ ├── common_reference.h │ │ │ │ ├── common_type.h │ │ │ │ ├── conditional.h │ │ │ │ ├── conjunction.h │ │ │ │ ├── copy_cv.h │ │ │ │ ├── copy_cvref.h │ │ │ │ ├── datasizeof.h │ │ │ │ ├── decay.h │ │ │ │ ├── dependent_type.h │ │ │ │ ├── desugars_to.h │ │ │ │ ├── disjunction.h │ │ │ │ ├── enable_if.h │ │ │ │ ├── extent.h │ │ │ │ ├── has_unique_object_representation.h │ │ │ │ ├── has_virtual_destructor.h │ │ │ │ ├── integral_constant.h │ │ │ │ ├── invoke.h │ │ │ │ ├── is_abstract.h │ │ │ │ ├── is_aggregate.h │ │ │ │ ├── is_allocator.h │ │ │ │ ├── is_always_bitcastable.h │ │ │ │ ├── is_arithmetic.h │ │ │ │ ├── is_array.h │ │ │ │ ├── is_assignable.h │ │ │ │ ├── is_base_of.h │ │ │ │ ├── is_bounded_array.h │ │ │ │ ├── is_callable.h │ │ │ │ ├── is_char_like_type.h │ │ │ │ ├── is_class.h │ │ │ │ ├── is_compound.h │ │ │ │ ├── is_const.h │ │ │ │ ├── is_constant_evaluated.h │ │ │ │ ├── is_constructible.h │ │ │ │ ├── is_convertible.h │ │ │ │ ├── is_core_convertible.h │ │ │ │ ├── is_destructible.h │ │ │ │ ├── is_empty.h │ │ │ │ ├── is_enum.h │ │ │ │ ├── is_equality_comparable.h │ │ │ │ ├── is_execution_policy.h │ │ │ │ ├── is_final.h │ │ │ │ ├── is_floating_point.h │ │ │ │ ├── is_function.h │ │ │ │ ├── is_fundamental.h │ │ │ │ ├── is_implicitly_default_constructible.h │ │ │ │ ├── is_integral.h │ │ │ │ ├── is_literal_type.h │ │ │ │ ├── is_member_function_pointer.h │ │ │ │ ├── is_member_object_pointer.h │ │ │ │ ├── is_member_pointer.h │ │ │ │ ├── is_nothrow_assignable.h │ │ │ │ ├── is_nothrow_constructible.h │ │ │ │ ├── is_nothrow_convertible.h │ │ │ │ ├── is_nothrow_destructible.h │ │ │ │ ├── is_null_pointer.h │ │ │ │ ├── is_object.h │ │ │ │ ├── is_pod.h │ │ │ │ ├── is_pointer.h │ │ │ │ ├── is_polymorphic.h │ │ │ │ ├── is_primary_template.h │ │ │ │ ├── is_reference.h │ │ │ │ ├── is_reference_wrapper.h │ │ │ │ ├── is_referenceable.h │ │ │ │ ├── is_same.h │ │ │ │ ├── is_scalar.h │ │ │ │ ├── is_scoped_enum.h │ │ │ │ ├── is_signed.h │ │ │ │ ├── is_signed_integer.h │ │ │ │ ├── is_specialization.h │ │ │ │ ├── is_standard_layout.h │ │ │ │ ├── is_swappable.h │ │ │ │ ├── is_trivial.h │ │ │ │ ├── is_trivially_assignable.h │ │ │ │ ├── is_trivially_constructible.h │ │ │ │ ├── is_trivially_copyable.h │ │ │ │ ├── is_trivially_destructible.h │ │ │ │ ├── is_trivially_lexicographically_comparable.h │ │ │ │ ├── is_trivially_relocatable.h │ │ │ │ ├── is_unbounded_array.h │ │ │ │ ├── is_union.h │ │ │ │ ├── is_unsigned.h │ │ │ │ ├── is_unsigned_integer.h │ │ │ │ ├── is_valid_expansion.h │ │ │ │ ├── is_void.h │ │ │ │ ├── is_volatile.h │ │ │ │ ├── lazy.h │ │ │ │ ├── make_32_64_or_128_bit.h │ │ │ │ ├── make_const_lvalue_ref.h │ │ │ │ ├── make_signed.h │ │ │ │ ├── make_unsigned.h │ │ │ │ ├── maybe_const.h │ │ │ │ ├── nat.h │ │ │ │ ├── negation.h │ │ │ │ ├── noexcept_move_assign_container.h │ │ │ │ ├── promote.h │ │ │ │ ├── rank.h │ │ │ │ ├── remove_all_extents.h │ │ │ │ ├── remove_const.h │ │ │ │ ├── remove_const_ref.h │ │ │ │ ├── remove_cv.h │ │ │ │ ├── remove_cvref.h │ │ │ │ ├── remove_extent.h │ │ │ │ ├── remove_pointer.h │ │ │ │ ├── remove_reference.h │ │ │ │ ├── remove_volatile.h │ │ │ │ ├── result_of.h │ │ │ │ ├── strip_signature.h │ │ │ │ ├── type_identity.h │ │ │ │ ├── type_list.h │ │ │ │ ├── underlying_type.h │ │ │ │ ├── unwrap_ref.h │ │ │ │ └── void_t.h │ │ │ │ ├── __undef_macros │ │ │ │ ├── __utility │ │ │ │ ├── as_const.h │ │ │ │ ├── as_lvalue.h │ │ │ │ ├── auto_cast.h │ │ │ │ ├── cmp.h │ │ │ │ ├── convert_to_integral.h │ │ │ │ ├── declval.h │ │ │ │ ├── empty.h │ │ │ │ ├── exception_guard.h │ │ │ │ ├── exchange.h │ │ │ │ ├── forward.h │ │ │ │ ├── forward_like.h │ │ │ │ ├── in_place.h │ │ │ │ ├── integer_sequence.h │ │ │ │ ├── is_pointer_in_range.h │ │ │ │ ├── is_valid_range.h │ │ │ │ ├── move.h │ │ │ │ ├── no_destroy.h │ │ │ │ ├── pair.h │ │ │ │ ├── piecewise_construct.h │ │ │ │ ├── priority_tag.h │ │ │ │ ├── private_constructor_tag.h │ │ │ │ ├── rel_ops.h │ │ │ │ ├── small_buffer.h │ │ │ │ ├── swap.h │ │ │ │ ├── to_underlying.h │ │ │ │ └── unreachable.h │ │ │ │ ├── __variant │ │ │ │ └── monostate.h │ │ │ │ ├── __verbose_abort │ │ │ │ ├── algorithm │ │ │ │ ├── any │ │ │ │ ├── array │ │ │ │ ├── atomic │ │ │ │ ├── barrier │ │ │ │ ├── bit │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── ccomplex │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfenv │ │ │ │ ├── cfloat │ │ │ │ ├── charconv │ │ │ │ ├── chrono │ │ │ │ ├── cinttypes │ │ │ │ ├── ciso646 │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── codecvt │ │ │ │ ├── compare │ │ │ │ ├── complex │ │ │ │ ├── complex.h │ │ │ │ ├── concepts │ │ │ │ ├── condition_variable │ │ │ │ ├── coroutine │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstdbool │ │ │ │ ├── cstddef │ │ │ │ ├── cstdint │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctgmath │ │ │ │ ├── ctime │ │ │ │ ├── ctype.h │ │ │ │ ├── cuchar │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── cxxabi.h │ │ │ │ ├── deque │ │ │ │ ├── errno.h │ │ │ │ ├── exception │ │ │ │ ├── execution │ │ │ │ ├── expected │ │ │ │ ├── experimental │ │ │ │ ├── __config │ │ │ │ ├── __simd │ │ │ │ │ ├── aligned_tag.h │ │ │ │ │ ├── declaration.h │ │ │ │ │ ├── reference.h │ │ │ │ │ ├── scalar.h │ │ │ │ │ ├── simd.h │ │ │ │ │ ├── simd_mask.h │ │ │ │ │ ├── traits.h │ │ │ │ │ ├── utility.h │ │ │ │ │ └── vec_ext.h │ │ │ │ ├── iterator │ │ │ │ ├── memory │ │ │ │ ├── propagate_const │ │ │ │ ├── simd │ │ │ │ ├── type_traits │ │ │ │ └── utility │ │ │ │ ├── ext │ │ │ │ ├── __hash │ │ │ │ ├── hash_map │ │ │ │ └── hash_set │ │ │ │ ├── fenv.h │ │ │ │ ├── filesystem │ │ │ │ ├── float.h │ │ │ │ ├── format │ │ │ │ ├── forward_list │ │ │ │ ├── fstream │ │ │ │ ├── functional │ │ │ │ ├── future │ │ │ │ ├── initializer_list │ │ │ │ ├── inttypes.h │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── istream │ │ │ │ ├── iterator │ │ │ │ ├── latch │ │ │ │ ├── libcxx.imp │ │ │ │ ├── limits │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── locale.h │ │ │ │ ├── map │ │ │ │ ├── math.h │ │ │ │ ├── mdspan │ │ │ │ ├── memory │ │ │ │ ├── memory_resource │ │ │ │ ├── module.modulemap │ │ │ │ ├── mutex │ │ │ │ ├── new │ │ │ │ ├── numbers │ │ │ │ ├── numeric │ │ │ │ ├── optional │ │ │ │ ├── ostream │ │ │ │ ├── print │ │ │ │ ├── queue │ │ │ │ ├── random │ │ │ │ ├── ranges │ │ │ │ ├── ratio │ │ │ │ ├── regex │ │ │ │ ├── scoped_allocator │ │ │ │ ├── semaphore │ │ │ │ ├── set │ │ │ │ ├── shared_mutex │ │ │ │ ├── source_location │ │ │ │ ├── span │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdatomic.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdexcept │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── stop_token │ │ │ │ ├── streambuf │ │ │ │ ├── string │ │ │ │ ├── string.h │ │ │ │ ├── string_view │ │ │ │ ├── strstream │ │ │ │ ├── syncstream │ │ │ │ ├── system_error │ │ │ │ ├── tgmath.h │ │ │ │ ├── thread │ │ │ │ ├── tuple │ │ │ │ ├── type_traits │ │ │ │ ├── typeindex │ │ │ │ ├── typeinfo │ │ │ │ ├── uchar.h │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_set │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ ├── variant │ │ │ │ ├── vector │ │ │ │ ├── version │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── float.h │ │ ├── fuzzer │ │ │ └── FuzzedDataProvider.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── limits.h │ │ ├── module.modulemap │ │ ├── orc │ │ │ └── c_api.h │ │ ├── profile │ │ │ ├── InstrProfData.inc │ │ │ └── instr_prof_interface.h │ │ ├── sanitizer │ │ │ ├── allocator_interface.h │ │ │ ├── asan_interface.h │ │ │ ├── common_interface_defs.h │ │ │ ├── coverage_interface.h │ │ │ ├── dfsan_interface.h │ │ │ ├── hwasan_interface.h │ │ │ ├── linux_syscall_hooks.h │ │ │ ├── lsan_interface.h │ │ │ ├── memprof_interface.h │ │ │ ├── msan_interface.h │ │ │ ├── netbsd_syscall_hooks.h │ │ │ ├── scudo_interface.h │ │ │ ├── tsan_interface.h │ │ │ ├── tsan_interface_atomic.h │ │ │ └── ubsan_interface.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdatomic.h │ │ ├── stdbool.h │ │ ├── stdckdint.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdnoreturn.h │ │ ├── tgmath.h │ │ ├── unwind.h │ │ ├── varargs.h │ │ └── wasm32-wasip1 │ │ │ ├── __errno.h │ │ │ ├── __errno_values.h │ │ │ ├── __fd_set.h │ │ │ ├── __function___isatty.h │ │ │ ├── __functions_malloc.h │ │ │ ├── __functions_memcpy.h │ │ │ ├── __header_dirent.h │ │ │ ├── __header_fcntl.h │ │ │ ├── __header_inttypes.h │ │ │ ├── __header_netinet_in.h │ │ │ ├── __header_poll.h │ │ │ ├── __header_stdlib.h │ │ │ ├── __header_string.h │ │ │ ├── __header_sys_ioctl.h │ │ │ ├── __header_sys_resource.h │ │ │ ├── __header_sys_socket.h │ │ │ ├── __header_sys_stat.h │ │ │ ├── __header_time.h │ │ │ ├── __header_unistd.h │ │ │ ├── __macro_FD_SETSIZE.h │ │ │ ├── __macro_PAGESIZE.h │ │ │ ├── __mode_t.h │ │ │ ├── __seek.h │ │ │ ├── __struct_dirent.h │ │ │ ├── __struct_in6_addr.h │ │ │ ├── __struct_in_addr.h │ │ │ ├── __struct_iovec.h │ │ │ ├── __struct_msghdr.h │ │ │ ├── __struct_pollfd.h │ │ │ ├── __struct_rusage.h │ │ │ ├── __struct_sockaddr.h │ │ │ ├── __struct_sockaddr_in.h │ │ │ ├── __struct_sockaddr_in6.h │ │ │ ├── __struct_sockaddr_storage.h │ │ │ ├── __struct_sockaddr_un.h │ │ │ ├── __struct_stat.h │ │ │ ├── __struct_timespec.h │ │ │ ├── __struct_timeval.h │ │ │ ├── __struct_tm.h │ │ │ ├── __struct_tms.h │ │ │ ├── __typedef_DIR.h │ │ │ ├── __typedef_blkcnt_t.h │ │ │ ├── __typedef_blksize_t.h │ │ │ ├── __typedef_clock_t.h │ │ │ ├── __typedef_clockid_t.h │ │ │ ├── __typedef_dev_t.h │ │ │ ├── __typedef_fd_set.h │ │ │ ├── __typedef_gid_t.h │ │ │ ├── __typedef_in_addr_t.h │ │ │ ├── __typedef_in_port_t.h │ │ │ ├── __typedef_ino_t.h │ │ │ ├── __typedef_mode_t.h │ │ │ ├── __typedef_nfds_t.h │ │ │ ├── __typedef_nlink_t.h │ │ │ ├── __typedef_off_t.h │ │ │ ├── __typedef_sa_family_t.h │ │ │ ├── __typedef_sigset_t.h │ │ │ ├── __typedef_socklen_t.h │ │ │ ├── __typedef_ssize_t.h │ │ │ ├── __typedef_suseconds_t.h │ │ │ ├── __typedef_time_t.h │ │ │ ├── __typedef_uid_t.h │ │ │ ├── __wasi_snapshot.h │ │ │ ├── alloca.h │ │ │ ├── ar.h │ │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ │ ├── assert.h │ │ │ ├── bits │ │ │ ├── alltypes.h │ │ │ ├── dirent.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ └── stdint.h │ │ │ ├── byteswap.h │ │ │ ├── complex.h │ │ │ ├── cpio.h │ │ │ ├── crypt.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── dlfcn.h │ │ │ ├── endian.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── fmtmsg.h │ │ │ ├── fnmatch.h │ │ │ ├── fts.h │ │ │ ├── ftw.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── iconv.h │ │ │ ├── ifaddrs.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── langinfo.h │ │ │ ├── libgen.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── monetary.h │ │ │ ├── mqueue.h │ │ │ ├── netinet │ │ │ ├── icmp6.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ │ ├── netpacket │ │ │ └── packet.h │ │ │ ├── nl_types.h │ │ │ ├── poll.h │ │ │ ├── pthread.h │ │ │ ├── regex.h │ │ │ ├── sched.h │ │ │ ├── search.h │ │ │ ├── semaphore.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stdalign.h │ │ │ ├── stdbool.h │ │ │ ├── stdc-predef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdio_ext.h │ │ │ ├── stdlib.h │ │ │ ├── stdnoreturn.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── stropts.h │ │ │ ├── sys │ │ │ ├── dir.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── ioctl.h │ │ │ ├── mman.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── random.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ └── utsname.h │ │ │ ├── syscall.h │ │ │ ├── sysexits.h │ │ │ ├── tar.h │ │ │ ├── tgmath.h │ │ │ ├── threads.h │ │ │ ├── time.h │ │ │ ├── uchar.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ ├── values.h │ │ │ ├── wasi │ │ │ ├── api.h │ │ │ ├── libc-busywait.h │ │ │ ├── libc-environ.h │ │ │ ├── libc-find-relpath.h │ │ │ ├── libc-nocwd.h │ │ │ ├── libc.h │ │ │ └── wasip2.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── lib │ │ ├── wasm32-unknown-wasip1 │ │ │ └── libclang_rt.builtins.a │ │ └── wasm32-wasip1 │ │ │ ├── crt1-command.o │ │ │ ├── crt1-reactor.o │ │ │ ├── crt1.o │ │ │ ├── libc++.a │ │ │ ├── libc++.modules.json │ │ │ ├── libc++abi.a │ │ │ ├── libc++experimental.a │ │ │ ├── libc-printscan-long-double.a │ │ │ ├── libc-printscan-no-floating-point.a │ │ │ ├── libc.a │ │ │ ├── libc.imports │ │ │ ├── libcrypt.a │ │ │ ├── libdl.a │ │ │ ├── libm.a │ │ │ ├── libpthread.a │ │ │ ├── libresolv.a │ │ │ ├── librt.a │ │ │ ├── libsetjmp.a │ │ │ ├── libutil.a │ │ │ ├── libwasi-emulated-getpid.a │ │ │ ├── libwasi-emulated-mman.a │ │ │ ├── libwasi-emulated-process-clocks.a │ │ │ ├── libwasi-emulated-signal.a │ │ │ └── libxnet.a │ │ └── share │ │ ├── libc++ │ │ └── v1 │ │ │ ├── std.compat.cppm │ │ │ ├── std.compat │ │ │ ├── cassert.inc │ │ │ ├── cctype.inc │ │ │ ├── cerrno.inc │ │ │ ├── cfenv.inc │ │ │ ├── cfloat.inc │ │ │ ├── cinttypes.inc │ │ │ ├── climits.inc │ │ │ ├── clocale.inc │ │ │ ├── cmath.inc │ │ │ ├── csetjmp.inc │ │ │ ├── csignal.inc │ │ │ ├── cstdarg.inc │ │ │ ├── cstddef.inc │ │ │ ├── cstdint.inc │ │ │ ├── cstdio.inc │ │ │ ├── cstdlib.inc │ │ │ ├── cstring.inc │ │ │ ├── ctime.inc │ │ │ ├── cuchar.inc │ │ │ ├── cwchar.inc │ │ │ └── cwctype.inc │ │ │ ├── std.cppm │ │ │ └── std │ │ │ ├── algorithm.inc │ │ │ ├── any.inc │ │ │ ├── array.inc │ │ │ ├── atomic.inc │ │ │ ├── barrier.inc │ │ │ ├── bit.inc │ │ │ ├── bitset.inc │ │ │ ├── cassert.inc │ │ │ ├── cctype.inc │ │ │ ├── cerrno.inc │ │ │ ├── cfenv.inc │ │ │ ├── cfloat.inc │ │ │ ├── charconv.inc │ │ │ ├── chrono.inc │ │ │ ├── cinttypes.inc │ │ │ ├── climits.inc │ │ │ ├── clocale.inc │ │ │ ├── cmath.inc │ │ │ ├── codecvt.inc │ │ │ ├── compare.inc │ │ │ ├── complex.inc │ │ │ ├── concepts.inc │ │ │ ├── condition_variable.inc │ │ │ ├── coroutine.inc │ │ │ ├── csetjmp.inc │ │ │ ├── csignal.inc │ │ │ ├── cstdarg.inc │ │ │ ├── cstddef.inc │ │ │ ├── cstdint.inc │ │ │ ├── cstdio.inc │ │ │ ├── cstdlib.inc │ │ │ ├── cstring.inc │ │ │ ├── ctime.inc │ │ │ ├── cuchar.inc │ │ │ ├── cwchar.inc │ │ │ ├── cwctype.inc │ │ │ ├── deque.inc │ │ │ ├── exception.inc │ │ │ ├── execution.inc │ │ │ ├── expected.inc │ │ │ ├── filesystem.inc │ │ │ ├── flat_map.inc │ │ │ ├── flat_set.inc │ │ │ ├── format.inc │ │ │ ├── forward_list.inc │ │ │ ├── fstream.inc │ │ │ ├── functional.inc │ │ │ ├── future.inc │ │ │ ├── generator.inc │ │ │ ├── hazard_pointer.inc │ │ │ ├── initializer_list.inc │ │ │ ├── iomanip.inc │ │ │ ├── ios.inc │ │ │ ├── iosfwd.inc │ │ │ ├── iostream.inc │ │ │ ├── istream.inc │ │ │ ├── iterator.inc │ │ │ ├── latch.inc │ │ │ ├── limits.inc │ │ │ ├── list.inc │ │ │ ├── locale.inc │ │ │ ├── map.inc │ │ │ ├── mdspan.inc │ │ │ ├── memory.inc │ │ │ ├── memory_resource.inc │ │ │ ├── mutex.inc │ │ │ ├── new.inc │ │ │ ├── numbers.inc │ │ │ ├── numeric.inc │ │ │ ├── optional.inc │ │ │ ├── ostream.inc │ │ │ ├── print.inc │ │ │ ├── queue.inc │ │ │ ├── random.inc │ │ │ ├── ranges.inc │ │ │ ├── ratio.inc │ │ │ ├── rcu.inc │ │ │ ├── regex.inc │ │ │ ├── scoped_allocator.inc │ │ │ ├── semaphore.inc │ │ │ ├── set.inc │ │ │ ├── shared_mutex.inc │ │ │ ├── source_location.inc │ │ │ ├── span.inc │ │ │ ├── spanstream.inc │ │ │ ├── sstream.inc │ │ │ ├── stack.inc │ │ │ ├── stacktrace.inc │ │ │ ├── stdexcept.inc │ │ │ ├── stdfloat.inc │ │ │ ├── stop_token.inc │ │ │ ├── streambuf.inc │ │ │ ├── string.inc │ │ │ ├── string_view.inc │ │ │ ├── strstream.inc │ │ │ ├── syncstream.inc │ │ │ ├── system_error.inc │ │ │ ├── text_encoding.inc │ │ │ ├── thread.inc │ │ │ ├── tuple.inc │ │ │ ├── type_traits.inc │ │ │ ├── typeindex.inc │ │ │ ├── typeinfo.inc │ │ │ ├── unordered_map.inc │ │ │ ├── unordered_set.inc │ │ │ ├── utility.inc │ │ │ ├── valarray.inc │ │ │ ├── variant.inc │ │ │ ├── vector.inc │ │ │ └── version.inc │ │ └── wasm32-wasip1 │ │ ├── defined-symbols.txt │ │ ├── include-all.c │ │ ├── predefined-macros.txt │ │ └── undefined-symbols.txt ├── coremark │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CW7 │ │ ├── CoreMark.mcp │ │ ├── CoreMark.xml │ │ └── prefix.h │ ├── Makefile │ ├── README.md │ ├── coremark.wasm │ └── main.c ├── dino-cocoa │ ├── .gitignore │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CMakeLists.txt │ ├── DinoView.h │ ├── DinoView.m │ ├── README.md │ ├── dino.wasm │ ├── dino.wat │ ├── main.m │ └── plist.in ├── dino-gba │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dino.wasm │ ├── dino.wat │ └── main.c ├── dino-nds │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dino.wasm │ ├── dino.wat │ └── main.c ├── dino-nextstep │ ├── Dino.project │ │ ├── Dino.iconheader │ │ ├── Dino_main.m │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ └── dino.tiff │ └── README.md ├── dino-sdl1 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dino.wasm │ ├── dino.wat │ └── main.c ├── dino-sdl2 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dino.wasm │ ├── dino.wat │ └── main.c ├── fac │ ├── .gitignore │ ├── Makefile │ ├── fac.wasm │ ├── fac.wat │ └── main.c ├── go-wasi │ ├── CMakeLists.txt │ ├── Makefile │ ├── Submake │ ├── gowasi.wasm │ ├── main.c │ └── src │ │ └── main.go ├── isatty │ ├── .gitignore │ ├── Makefile │ ├── isatty.wasm │ └── main.c ├── ls │ ├── .gitignore │ ├── Makefile │ ├── main.c │ └── src │ │ ├── Makefile │ │ ├── ls.wasm │ │ └── main.c ├── pthreads │ ├── Makefile │ ├── main.c │ └── src │ │ ├── Makefile │ │ └── main.c ├── python │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CW7 │ │ ├── README.md │ │ ├── prefix.h │ │ ├── python.mcp │ │ └── python.xml │ ├── Makefile │ ├── README.md │ ├── Submake │ ├── lib │ │ └── python311.zip │ ├── main.c │ ├── python.wasm │ └── screenshots │ │ ├── python-haiku.png │ │ ├── python-macos.png │ │ ├── python-macosx104.png │ │ ├── python-macosxserver10.png │ │ ├── python-nextstep.png │ │ ├── python-openstep-intel.png │ │ ├── python-openstep-sparc.png │ │ └── python-winxp.png ├── rust-wasi │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CW7 │ │ ├── prefix.h │ │ ├── rustwasi.mcp │ │ └── rustwasi.xml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ ├── Submake │ ├── main.c │ ├── screenshots │ │ └── rustwasi-macos.png │ ├── src │ │ └── main.rs │ └── target │ │ └── wasm32-wasi │ │ └── debug │ │ └── rust-wasi.wasm ├── swift-wasi │ ├── .gitignore │ ├── Makefile │ ├── Package.swift │ ├── Sources │ │ └── swift-wasi │ │ │ └── main.swift │ ├── Submake │ └── main.c └── threads │ ├── Makefile │ ├── main.c │ └── src │ ├── Makefile │ ├── main.c │ └── wasi_thread_spawn.S ├── futex ├── CMakeLists.txt ├── Makefile ├── futex.c ├── futex.h ├── futex_test.c ├── futex_test.h ├── list.c ├── list.h ├── list_test.c ├── list_test.h ├── map.c ├── map.h ├── map_test.c ├── map_test.h └── test.c ├── tests ├── .gitignore ├── Makefile ├── README.md ├── address.wast ├── align.wast ├── atomic.wast ├── binary-leb128.wast ├── binary.wast ├── block.wast ├── br.wast ├── br_if.wast ├── br_table.wast ├── bulk.wast ├── call.wast ├── call_indirect.wast ├── const.wast ├── conversions.wast ├── custom.wast ├── data.wast ├── elem.wast ├── endianness.wast ├── export_imported_function.wast ├── exports.wast ├── f32.wast ├── f32_bitwise.wast ├── f32_cmp.wast ├── f64.wast ├── f64_bitwise.wast ├── f64_cmp.wast ├── fac.wast ├── float_exprs.wast ├── float_literals.wast ├── float_memory.wast ├── float_misc.wast ├── forward.wast ├── func.wast ├── func_ptrs.wast ├── gen.py ├── gen │ ├── address.0.wasm │ ├── address.1.wat │ ├── address.2.wasm │ ├── address.3.wasm │ ├── address.4.wasm │ ├── address.json │ ├── align.0.wasm │ ├── align.1.wasm │ ├── align.10.wasm │ ├── align.100.wasm │ ├── align.101.wasm │ ├── align.102.wasm │ ├── align.103.wasm │ ├── align.104.wasm │ ├── align.105.wasm │ ├── align.106.wasm │ ├── align.107.wasm │ ├── align.108.wasm │ ├── align.109.wasm │ ├── align.11.wasm │ ├── align.110.wasm │ ├── align.111.wasm │ ├── align.112.wasm │ ├── align.113.wasm │ ├── align.12.wasm │ ├── align.13.wasm │ ├── align.14.wasm │ ├── align.15.wasm │ ├── align.16.wasm │ ├── align.17.wasm │ ├── align.18.wasm │ ├── align.19.wasm │ ├── align.2.wasm │ ├── align.20.wasm │ ├── align.21.wasm │ ├── align.22.wasm │ ├── align.23.wat │ ├── align.24.wat │ ├── align.25.wat │ ├── align.26.wat │ ├── align.27.wat │ ├── align.28.wat │ ├── align.29.wat │ ├── align.3.wasm │ ├── align.30.wat │ ├── align.31.wat │ ├── align.32.wat │ ├── align.33.wat │ ├── align.34.wat │ ├── align.35.wat │ ├── align.36.wat │ ├── align.37.wat │ ├── align.38.wat │ ├── align.39.wat │ ├── align.4.wasm │ ├── align.40.wat │ ├── align.41.wat │ ├── align.42.wat │ ├── align.43.wat │ ├── align.44.wat │ ├── align.45.wat │ ├── align.46.wat │ ├── align.47.wat │ ├── align.48.wat │ ├── align.49.wat │ ├── align.5.wasm │ ├── align.50.wat │ ├── align.51.wat │ ├── align.52.wat │ ├── align.53.wat │ ├── align.54.wat │ ├── align.55.wat │ ├── align.56.wat │ ├── align.57.wat │ ├── align.58.wat │ ├── align.59.wat │ ├── align.6.wasm │ ├── align.60.wat │ ├── align.61.wat │ ├── align.62.wat │ ├── align.63.wat │ ├── align.64.wat │ ├── align.65.wat │ ├── align.66.wat │ ├── align.67.wat │ ├── align.68.wat │ ├── align.69.wasm │ ├── align.7.wasm │ ├── align.70.wasm │ ├── align.71.wasm │ ├── align.72.wasm │ ├── align.73.wasm │ ├── align.74.wasm │ ├── align.75.wasm │ ├── align.76.wasm │ ├── align.77.wasm │ ├── align.78.wasm │ ├── align.79.wasm │ ├── align.8.wasm │ ├── align.80.wasm │ ├── align.81.wasm │ ├── align.82.wasm │ ├── align.83.wasm │ ├── align.84.wasm │ ├── align.85.wasm │ ├── align.86.wasm │ ├── align.87.wasm │ ├── align.88.wasm │ ├── align.89.wasm │ ├── align.9.wasm │ ├── align.90.wasm │ ├── align.91.wasm │ ├── align.92.wasm │ ├── align.93.wasm │ ├── align.94.wasm │ ├── align.95.wasm │ ├── align.96.wasm │ ├── align.97.wasm │ ├── align.98.wasm │ ├── align.99.wasm │ ├── align.json │ ├── assert_address.0.c │ ├── assert_address.2.c │ ├── assert_address.3.c │ ├── assert_address.4.c │ ├── assert_align.0.c │ ├── assert_align.1.c │ ├── assert_align.10.c │ ├── assert_align.106.c │ ├── assert_align.107.c │ ├── assert_align.11.c │ ├── assert_align.12.c │ ├── assert_align.13.c │ ├── assert_align.14.c │ ├── assert_align.15.c │ ├── assert_align.16.c │ ├── assert_align.17.c │ ├── assert_align.18.c │ ├── assert_align.19.c │ ├── assert_align.2.c │ ├── assert_align.20.c │ ├── assert_align.21.c │ ├── assert_align.22.c │ ├── assert_align.3.c │ ├── assert_align.4.c │ ├── assert_align.5.c │ ├── assert_align.6.c │ ├── assert_align.7.c │ ├── assert_align.8.c │ ├── assert_align.9.c │ ├── assert_atomic.0.c │ ├── assert_atomic.1.c │ ├── assert_atomic.2.c │ ├── assert_binary-leb128.0.c │ ├── assert_binary-leb128.1.c │ ├── assert_binary-leb128.10.c │ ├── assert_binary-leb128.11.c │ ├── assert_binary-leb128.12.c │ ├── assert_binary-leb128.13.c │ ├── assert_binary-leb128.14.c │ ├── assert_binary-leb128.15.c │ ├── assert_binary-leb128.16.c │ ├── assert_binary-leb128.17.c │ ├── assert_binary-leb128.18.c │ ├── assert_binary-leb128.19.c │ ├── assert_binary-leb128.2.c │ ├── assert_binary-leb128.20.c │ ├── assert_binary-leb128.21.c │ ├── assert_binary-leb128.22.c │ ├── assert_binary-leb128.23.c │ ├── assert_binary-leb128.3.c │ ├── assert_binary-leb128.4.c │ ├── assert_binary-leb128.5.c │ ├── assert_binary-leb128.6.c │ ├── assert_binary-leb128.7.c │ ├── assert_binary-leb128.8.c │ ├── assert_binary-leb128.80.c │ ├── assert_binary-leb128.82.c │ ├── assert_binary-leb128.83.c │ ├── assert_binary-leb128.84.c │ ├── assert_binary-leb128.9.c │ ├── assert_binary.0.c │ ├── assert_binary.1.c │ ├── assert_binary.102.c │ ├── assert_binary.107.c │ ├── assert_binary.109.c │ ├── assert_binary.2.c │ ├── assert_binary.3.c │ ├── assert_binary.55.c │ ├── assert_binary.60.c │ ├── assert_binary.61.c │ ├── assert_binary.69.c │ ├── assert_binary.72.c │ ├── assert_binary.81.c │ ├── assert_binary.86.c │ ├── assert_binary.92.c │ ├── assert_binary.95.c │ ├── assert_binary.98.c │ ├── assert_block.0.c │ ├── assert_br.0.c │ ├── assert_br_if.0.c │ ├── assert_br_table.0.c │ ├── assert_bulk.0.c │ ├── assert_bulk.1.c │ ├── assert_bulk.2.c │ ├── assert_bulk.3.c │ ├── assert_bulk.4.c │ ├── assert_bulk.5.c │ ├── assert_bulk.6.c │ ├── assert_call.0.c │ ├── assert_call_indirect.0.c │ ├── assert_call_indirect.34.c │ ├── assert_const.0.c │ ├── assert_const.1.c │ ├── assert_const.110.c │ ├── assert_const.111.c │ ├── assert_const.114.c │ ├── assert_const.115.c │ ├── assert_const.118.c │ ├── assert_const.119.c │ ├── assert_const.12.c │ ├── assert_const.122.c │ ├── assert_const.123.c │ ├── assert_const.126.c │ ├── assert_const.127.c │ ├── assert_const.128.c │ ├── assert_const.129.c │ ├── assert_const.13.c │ ├── assert_const.130.c │ ├── assert_const.131.c │ ├── assert_const.132.c │ ├── assert_const.133.c │ ├── assert_const.134.c │ ├── assert_const.135.c │ ├── assert_const.14.c │ ├── assert_const.140.c │ ├── assert_const.141.c │ ├── assert_const.144.c │ ├── assert_const.145.c │ ├── assert_const.148.c │ ├── assert_const.149.c │ ├── assert_const.15.c │ ├── assert_const.150.c │ ├── assert_const.151.c │ ├── assert_const.152.c │ ├── assert_const.153.c │ ├── assert_const.154.c │ ├── assert_const.155.c │ ├── assert_const.16.c │ ├── assert_const.160.c │ ├── assert_const.161.c │ ├── assert_const.164.c │ ├── assert_const.165.c │ ├── assert_const.168.c │ ├── assert_const.169.c │ ├── assert_const.17.c │ ├── assert_const.170.c │ ├── assert_const.171.c │ ├── assert_const.178.c │ ├── assert_const.179.c │ ├── assert_const.18.c │ ├── assert_const.180.c │ ├── assert_const.181.c │ ├── assert_const.182.c │ ├── assert_const.183.c │ ├── assert_const.184.c │ ├── assert_const.185.c │ ├── assert_const.186.c │ ├── assert_const.187.c │ ├── assert_const.188.c │ ├── assert_const.189.c │ ├── assert_const.19.c │ ├── assert_const.190.c │ ├── assert_const.191.c │ ├── assert_const.192.c │ ├── assert_const.193.c │ ├── assert_const.194.c │ ├── assert_const.195.c │ ├── assert_const.196.c │ ├── assert_const.197.c │ ├── assert_const.198.c │ ├── assert_const.199.c │ ├── assert_const.20.c │ ├── assert_const.200.c │ ├── assert_const.201.c │ ├── assert_const.202.c │ ├── assert_const.203.c │ ├── assert_const.204.c │ ├── assert_const.205.c │ ├── assert_const.206.c │ ├── assert_const.207.c │ ├── assert_const.208.c │ ├── assert_const.209.c │ ├── assert_const.21.c │ ├── assert_const.210.c │ ├── assert_const.211.c │ ├── assert_const.212.c │ ├── assert_const.213.c │ ├── assert_const.214.c │ ├── assert_const.215.c │ ├── assert_const.216.c │ ├── assert_const.217.c │ ├── assert_const.218.c │ ├── assert_const.219.c │ ├── assert_const.22.c │ ├── assert_const.220.c │ ├── assert_const.221.c │ ├── assert_const.222.c │ ├── assert_const.223.c │ ├── assert_const.224.c │ ├── assert_const.225.c │ ├── assert_const.226.c │ ├── assert_const.227.c │ ├── assert_const.228.c │ ├── assert_const.229.c │ ├── assert_const.23.c │ ├── assert_const.230.c │ ├── assert_const.231.c │ ├── assert_const.232.c │ ├── assert_const.233.c │ ├── assert_const.234.c │ ├── assert_const.235.c │ ├── assert_const.236.c │ ├── assert_const.237.c │ ├── assert_const.238.c │ ├── assert_const.239.c │ ├── assert_const.24.c │ ├── assert_const.240.c │ ├── assert_const.241.c │ ├── assert_const.242.c │ ├── assert_const.243.c │ ├── assert_const.244.c │ ├── assert_const.245.c │ ├── assert_const.246.c │ ├── assert_const.247.c │ ├── assert_const.248.c │ ├── assert_const.249.c │ ├── assert_const.25.c │ ├── assert_const.250.c │ ├── assert_const.251.c │ ├── assert_const.252.c │ ├── assert_const.253.c │ ├── assert_const.254.c │ ├── assert_const.255.c │ ├── assert_const.256.c │ ├── assert_const.257.c │ ├── assert_const.258.c │ ├── assert_const.259.c │ ├── assert_const.26.c │ ├── assert_const.260.c │ ├── assert_const.261.c │ ├── assert_const.262.c │ ├── assert_const.263.c │ ├── assert_const.264.c │ ├── assert_const.265.c │ ├── assert_const.266.c │ ├── assert_const.267.c │ ├── assert_const.268.c │ ├── assert_const.269.c │ ├── assert_const.27.c │ ├── assert_const.270.c │ ├── assert_const.271.c │ ├── assert_const.272.c │ ├── assert_const.273.c │ ├── assert_const.274.c │ ├── assert_const.275.c │ ├── assert_const.276.c │ ├── assert_const.277.c │ ├── assert_const.278.c │ ├── assert_const.279.c │ ├── assert_const.28.c │ ├── assert_const.280.c │ ├── assert_const.281.c │ ├── assert_const.282.c │ ├── assert_const.283.c │ ├── assert_const.284.c │ ├── assert_const.285.c │ ├── assert_const.286.c │ ├── assert_const.287.c │ ├── assert_const.288.c │ ├── assert_const.289.c │ ├── assert_const.29.c │ ├── assert_const.290.c │ ├── assert_const.291.c │ ├── assert_const.292.c │ ├── assert_const.293.c │ ├── assert_const.294.c │ ├── assert_const.295.c │ ├── assert_const.296.c │ ├── assert_const.297.c │ ├── assert_const.298.c │ ├── assert_const.299.c │ ├── assert_const.30.c │ ├── assert_const.300.c │ ├── assert_const.301.c │ ├── assert_const.302.c │ ├── assert_const.303.c │ ├── assert_const.304.c │ ├── assert_const.305.c │ ├── assert_const.306.c │ ├── assert_const.307.c │ ├── assert_const.308.c │ ├── assert_const.309.c │ ├── assert_const.31.c │ ├── assert_const.310.c │ ├── assert_const.311.c │ ├── assert_const.312.c │ ├── assert_const.313.c │ ├── assert_const.314.c │ ├── assert_const.315.c │ ├── assert_const.316.c │ ├── assert_const.317.c │ ├── assert_const.318.c │ ├── assert_const.319.c │ ├── assert_const.32.c │ ├── assert_const.320.c │ ├── assert_const.321.c │ ├── assert_const.322.c │ ├── assert_const.323.c │ ├── assert_const.324.c │ ├── assert_const.325.c │ ├── assert_const.326.c │ ├── assert_const.327.c │ ├── assert_const.328.c │ ├── assert_const.329.c │ ├── assert_const.33.c │ ├── assert_const.330.c │ ├── assert_const.331.c │ ├── assert_const.332.c │ ├── assert_const.333.c │ ├── assert_const.334.c │ ├── assert_const.335.c │ ├── assert_const.336.c │ ├── assert_const.337.c │ ├── assert_const.338.c │ ├── assert_const.339.c │ ├── assert_const.34.c │ ├── assert_const.340.c │ ├── assert_const.341.c │ ├── assert_const.342.c │ ├── assert_const.343.c │ ├── assert_const.344.c │ ├── assert_const.345.c │ ├── assert_const.346.c │ ├── assert_const.347.c │ ├── assert_const.348.c │ ├── assert_const.349.c │ ├── assert_const.35.c │ ├── assert_const.350.c │ ├── assert_const.351.c │ ├── assert_const.352.c │ ├── assert_const.353.c │ ├── assert_const.354.c │ ├── assert_const.355.c │ ├── assert_const.356.c │ ├── assert_const.357.c │ ├── assert_const.358.c │ ├── assert_const.359.c │ ├── assert_const.360.c │ ├── assert_const.361.c │ ├── assert_const.362.c │ ├── assert_const.363.c │ ├── assert_const.364.c │ ├── assert_const.365.c │ ├── assert_const.366.c │ ├── assert_const.367.c │ ├── assert_const.368.c │ ├── assert_const.369.c │ ├── assert_const.370.c │ ├── assert_const.371.c │ ├── assert_const.372.c │ ├── assert_const.373.c │ ├── assert_const.374.c │ ├── assert_const.375.c │ ├── assert_const.376.c │ ├── assert_const.377.c │ ├── assert_const.378.c │ ├── assert_const.379.c │ ├── assert_const.380.c │ ├── assert_const.381.c │ ├── assert_const.382.c │ ├── assert_const.383.c │ ├── assert_const.384.c │ ├── assert_const.385.c │ ├── assert_const.386.c │ ├── assert_const.387.c │ ├── assert_const.388.c │ ├── assert_const.389.c │ ├── assert_const.390.c │ ├── assert_const.391.c │ ├── assert_const.392.c │ ├── assert_const.393.c │ ├── assert_const.394.c │ ├── assert_const.395.c │ ├── assert_const.396.c │ ├── assert_const.397.c │ ├── assert_const.398.c │ ├── assert_const.399.c │ ├── assert_const.400.c │ ├── assert_const.401.c │ ├── assert_const.402.c │ ├── assert_const.403.c │ ├── assert_const.404.c │ ├── assert_const.405.c │ ├── assert_const.406.c │ ├── assert_const.407.c │ ├── assert_const.408.c │ ├── assert_const.409.c │ ├── assert_const.410.c │ ├── assert_const.411.c │ ├── assert_const.412.c │ ├── assert_const.413.c │ ├── assert_const.414.c │ ├── assert_const.415.c │ ├── assert_const.416.c │ ├── assert_const.417.c │ ├── assert_const.418.c │ ├── assert_const.419.c │ ├── assert_const.420.c │ ├── assert_const.421.c │ ├── assert_const.422.c │ ├── assert_const.423.c │ ├── assert_const.424.c │ ├── assert_const.425.c │ ├── assert_const.426.c │ ├── assert_const.427.c │ ├── assert_const.428.c │ ├── assert_const.429.c │ ├── assert_const.430.c │ ├── assert_const.431.c │ ├── assert_const.432.c │ ├── assert_const.433.c │ ├── assert_const.434.c │ ├── assert_const.435.c │ ├── assert_const.436.c │ ├── assert_const.437.c │ ├── assert_const.438.c │ ├── assert_const.439.c │ ├── assert_const.440.c │ ├── assert_const.441.c │ ├── assert_const.442.c │ ├── assert_const.443.c │ ├── assert_const.444.c │ ├── assert_const.445.c │ ├── assert_const.446.c │ ├── assert_const.447.c │ ├── assert_const.448.c │ ├── assert_const.449.c │ ├── assert_const.450.c │ ├── assert_const.451.c │ ├── assert_const.452.c │ ├── assert_const.453.c │ ├── assert_const.454.c │ ├── assert_const.455.c │ ├── assert_const.456.c │ ├── assert_const.457.c │ ├── assert_const.458.c │ ├── assert_const.459.c │ ├── assert_const.460.c │ ├── assert_const.461.c │ ├── assert_const.462.c │ ├── assert_const.463.c │ ├── assert_const.464.c │ ├── assert_const.465.c │ ├── assert_const.466.c │ ├── assert_const.467.c │ ├── assert_const.468.c │ ├── assert_const.469.c │ ├── assert_const.470.c │ ├── assert_const.471.c │ ├── assert_const.472.c │ ├── assert_const.473.c │ ├── assert_const.474.c │ ├── assert_const.475.c │ ├── assert_const.476.c │ ├── assert_const.477.c │ ├── assert_const.55.c │ ├── assert_const.56.c │ ├── assert_const.57.c │ ├── assert_const.58.c │ ├── assert_const.59.c │ ├── assert_const.6.c │ ├── assert_const.60.c │ ├── assert_const.61.c │ ├── assert_const.62.c │ ├── assert_const.63.c │ ├── assert_const.64.c │ ├── assert_const.65.c │ ├── assert_const.66.c │ ├── assert_const.67.c │ ├── assert_const.68.c │ ├── assert_const.69.c │ ├── assert_const.7.c │ ├── assert_const.70.c │ ├── assert_const.71.c │ ├── assert_const.72.c │ ├── assert_const.73.c │ ├── assert_const.74.c │ ├── assert_const.75.c │ ├── assert_const.76.c │ ├── assert_const.77.c │ ├── assert_const.78.c │ ├── assert_const.79.c │ ├── assert_const.80.c │ ├── assert_const.81.c │ ├── assert_const.82.c │ ├── assert_const.83.c │ ├── assert_const.84.c │ ├── assert_const.85.c │ ├── assert_const.86.c │ ├── assert_const.87.c │ ├── assert_const.88.c │ ├── assert_const.89.c │ ├── assert_const.90.c │ ├── assert_conversions.0.c │ ├── assert_custom.0.c │ ├── assert_custom.1.c │ ├── assert_custom.2.c │ ├── assert_data.0.c │ ├── assert_data.1.c │ ├── assert_data.11.c │ ├── assert_data.12.c │ ├── assert_data.13.c │ ├── assert_data.14.c │ ├── assert_data.15.c │ ├── assert_data.16.c │ ├── assert_data.17.c │ ├── assert_data.18.c │ ├── assert_data.19.c │ ├── assert_data.2.c │ ├── assert_data.20.c │ ├── assert_data.21.c │ ├── assert_data.22.c │ ├── assert_data.23.c │ ├── assert_data.24.c │ ├── assert_data.25.c │ ├── assert_data.26.c │ ├── assert_data.3.c │ ├── assert_data.4.c │ ├── assert_data.5.c │ ├── assert_data.6.c │ ├── assert_data.7.c │ ├── assert_data.8.c │ ├── assert_elem.0.c │ ├── assert_elem.1.c │ ├── assert_elem.10.c │ ├── assert_elem.11.c │ ├── assert_elem.12.c │ ├── assert_elem.13.c │ ├── assert_elem.14.c │ ├── assert_elem.15.c │ ├── assert_elem.16.c │ ├── assert_elem.17.c │ ├── assert_elem.18.c │ ├── assert_elem.2.c │ ├── assert_elem.3.c │ ├── assert_elem.4.c │ ├── assert_elem.47.c │ ├── assert_elem.48.c │ ├── assert_elem.5.c │ ├── assert_elem.6.c │ ├── assert_elem.7.c │ ├── assert_elem.8.c │ ├── assert_elem.9.c │ ├── assert_endianness.0.c │ ├── assert_export_imported_function.0.c │ ├── assert_exports.0.c │ ├── assert_exports.1.c │ ├── assert_exports.10.c │ ├── assert_exports.11.c │ ├── assert_exports.2.c │ ├── assert_exports.20.c │ ├── assert_exports.21.c │ ├── assert_exports.22.c │ ├── assert_exports.23.c │ ├── assert_exports.24.c │ ├── assert_exports.25.c │ ├── assert_exports.26.c │ ├── assert_exports.27.c │ ├── assert_exports.28.c │ ├── assert_exports.3.c │ ├── assert_exports.37.c │ ├── assert_exports.38.c │ ├── assert_exports.39.c │ ├── assert_exports.4.c │ ├── assert_exports.40.c │ ├── assert_exports.41.c │ ├── assert_exports.42.c │ ├── assert_exports.43.c │ ├── assert_exports.44.c │ ├── assert_exports.45.c │ ├── assert_exports.46.c │ ├── assert_exports.47.c │ ├── assert_exports.48.c │ ├── assert_exports.49.c │ ├── assert_exports.5.c │ ├── assert_exports.50.c │ ├── assert_exports.58.c │ ├── assert_exports.59.c │ ├── assert_exports.6.c │ ├── assert_exports.60.c │ ├── assert_exports.61.c │ ├── assert_exports.62.c │ ├── assert_exports.63.c │ ├── assert_exports.64.c │ ├── assert_exports.65.c │ ├── assert_exports.66.c │ ├── assert_exports.67.c │ ├── assert_exports.68.c │ ├── assert_exports.69.c │ ├── assert_exports.7.c │ ├── assert_exports.70.c │ ├── assert_exports.71.c │ ├── assert_exports.8.c │ ├── assert_exports.9.c │ ├── assert_f32.0.c │ ├── assert_f32_bitwise.0.c │ ├── assert_f32_cmp.0.c │ ├── assert_f64.0.c │ ├── assert_f64_bitwise.0.c │ ├── assert_f64_cmp.0.c │ ├── assert_fac.0.c │ ├── assert_float_exprs.0.c │ ├── assert_float_exprs.1.c │ ├── assert_float_exprs.10.c │ ├── assert_float_exprs.11.c │ ├── assert_float_exprs.12.c │ ├── assert_float_exprs.13.c │ ├── assert_float_exprs.14.c │ ├── assert_float_exprs.15.c │ ├── assert_float_exprs.16.c │ ├── assert_float_exprs.17.c │ ├── assert_float_exprs.18.c │ ├── assert_float_exprs.19.c │ ├── assert_float_exprs.2.c │ ├── assert_float_exprs.20.c │ ├── assert_float_exprs.21.c │ ├── assert_float_exprs.22.c │ ├── assert_float_exprs.23.c │ ├── assert_float_exprs.24.c │ ├── assert_float_exprs.25.c │ ├── assert_float_exprs.26.c │ ├── assert_float_exprs.27.c │ ├── assert_float_exprs.28.c │ ├── assert_float_exprs.29.c │ ├── assert_float_exprs.3.c │ ├── assert_float_exprs.30.c │ ├── assert_float_exprs.31.c │ ├── assert_float_exprs.32.c │ ├── assert_float_exprs.33.c │ ├── assert_float_exprs.34.c │ ├── assert_float_exprs.35.c │ ├── assert_float_exprs.36.c │ ├── assert_float_exprs.37.c │ ├── assert_float_exprs.38.c │ ├── assert_float_exprs.39.c │ ├── assert_float_exprs.4.c │ ├── assert_float_exprs.40.c │ ├── assert_float_exprs.41.c │ ├── assert_float_exprs.42.c │ ├── assert_float_exprs.43.c │ ├── assert_float_exprs.44.c │ ├── assert_float_exprs.45.c │ ├── assert_float_exprs.46.c │ ├── assert_float_exprs.47.c │ ├── assert_float_exprs.48.c │ ├── assert_float_exprs.49.c │ ├── assert_float_exprs.5.c │ ├── assert_float_exprs.50.c │ ├── assert_float_exprs.51.c │ ├── assert_float_exprs.52.c │ ├── assert_float_exprs.53.c │ ├── assert_float_exprs.54.c │ ├── assert_float_exprs.55.c │ ├── assert_float_exprs.56.c │ ├── assert_float_exprs.57.c │ ├── assert_float_exprs.58.c │ ├── assert_float_exprs.59.c │ ├── assert_float_exprs.6.c │ ├── assert_float_exprs.60.c │ ├── assert_float_exprs.61.c │ ├── assert_float_exprs.62.c │ ├── assert_float_exprs.63.c │ ├── assert_float_exprs.64.c │ ├── assert_float_exprs.65.c │ ├── assert_float_exprs.66.c │ ├── assert_float_exprs.67.c │ ├── assert_float_exprs.68.c │ ├── assert_float_exprs.69.c │ ├── assert_float_exprs.7.c │ ├── assert_float_exprs.70.c │ ├── assert_float_exprs.71.c │ ├── assert_float_exprs.72.c │ ├── assert_float_exprs.73.c │ ├── assert_float_exprs.74.c │ ├── assert_float_exprs.75.c │ ├── assert_float_exprs.76.c │ ├── assert_float_exprs.77.c │ ├── assert_float_exprs.78.c │ ├── assert_float_exprs.79.c │ ├── assert_float_exprs.8.c │ ├── assert_float_exprs.80.c │ ├── assert_float_exprs.81.c │ ├── assert_float_exprs.82.c │ ├── assert_float_exprs.83.c │ ├── assert_float_exprs.84.c │ ├── assert_float_exprs.85.c │ ├── assert_float_exprs.86.c │ ├── assert_float_exprs.87.c │ ├── assert_float_exprs.88.c │ ├── assert_float_exprs.89.c │ ├── assert_float_exprs.9.c │ ├── assert_float_exprs.90.c │ ├── assert_float_exprs.91.c │ ├── assert_float_exprs.92.c │ ├── assert_float_exprs.93.c │ ├── assert_float_exprs.94.c │ ├── assert_float_exprs.95.c │ ├── assert_float_exprs.96.c │ ├── assert_float_exprs.97.c │ ├── assert_float_literals.0.c │ ├── assert_float_literals.1.c │ ├── assert_float_memory.0.c │ ├── assert_float_memory.1.c │ ├── assert_float_memory.2.c │ ├── assert_float_memory.3.c │ ├── assert_float_memory.4.c │ ├── assert_float_memory.5.c │ ├── assert_float_misc.0.c │ ├── assert_forward.0.c │ ├── assert_func.0.c │ ├── assert_func.1.c │ ├── assert_func.4.c │ ├── assert_func.5.c │ ├── assert_func_ptrs.0.c │ ├── assert_func_ptrs.8.c │ ├── assert_func_ptrs.9.c │ ├── assert_global.0.c │ ├── assert_global.22.c │ ├── assert_global.25.c │ ├── assert_global.3.c │ ├── assert_global.4.c │ ├── assert_i32.0.c │ ├── assert_i64.0.c │ ├── assert_if.0.c │ ├── assert_int_exprs.0.c │ ├── assert_int_exprs.1.c │ ├── assert_int_exprs.10.c │ ├── assert_int_exprs.11.c │ ├── assert_int_exprs.12.c │ ├── assert_int_exprs.13.c │ ├── assert_int_exprs.14.c │ ├── assert_int_exprs.15.c │ ├── assert_int_exprs.16.c │ ├── assert_int_exprs.17.c │ ├── assert_int_exprs.18.c │ ├── assert_int_exprs.2.c │ ├── assert_int_exprs.3.c │ ├── assert_int_exprs.4.c │ ├── assert_int_exprs.5.c │ ├── assert_int_exprs.6.c │ ├── assert_int_exprs.7.c │ ├── assert_int_exprs.8.c │ ├── assert_int_exprs.9.c │ ├── assert_int_literals.0.c │ ├── assert_labels.0.c │ ├── assert_left-to-right.0.c │ ├── assert_load.0.c │ ├── assert_local_get.0.c │ ├── assert_local_set.0.c │ ├── assert_local_tee.0.c │ ├── assert_loop.0.c │ ├── assert_memory.0.c │ ├── assert_memory.1.c │ ├── assert_memory.10.c │ ├── assert_memory.2.c │ ├── assert_memory.3.c │ ├── assert_memory.30.c │ ├── assert_memory.34.c │ ├── assert_memory.4.c │ ├── assert_memory.5.c │ ├── assert_memory.8.c │ ├── assert_memory.9.c │ ├── assert_memory_copy.0.c │ ├── assert_memory_copy.1.c │ ├── assert_memory_copy.10.c │ ├── assert_memory_copy.11.c │ ├── assert_memory_copy.12.c │ ├── assert_memory_copy.13.c │ ├── assert_memory_copy.14.c │ ├── assert_memory_copy.15.c │ ├── assert_memory_copy.16.c │ ├── assert_memory_copy.17.c │ ├── assert_memory_copy.18.c │ ├── assert_memory_copy.2.c │ ├── assert_memory_copy.3.c │ ├── assert_memory_copy.4.c │ ├── assert_memory_copy.5.c │ ├── assert_memory_copy.6.c │ ├── assert_memory_copy.7.c │ ├── assert_memory_copy.8.c │ ├── assert_memory_copy.83.c │ ├── assert_memory_copy.84.c │ ├── assert_memory_copy.85.c │ ├── assert_memory_copy.86.c │ ├── assert_memory_copy.87.c │ ├── assert_memory_copy.88.c │ ├── assert_memory_copy.89.c │ ├── assert_memory_copy.9.c │ ├── assert_memory_copy.90.c │ ├── assert_memory_copy.91.c │ ├── assert_memory_copy.92.c │ ├── assert_memory_copy.93.c │ ├── assert_memory_copy.94.c │ ├── assert_memory_copy.95.c │ ├── assert_memory_copy.96.c │ ├── assert_memory_fill.0.c │ ├── assert_memory_fill.1.c │ ├── assert_memory_fill.2.c │ ├── assert_memory_fill.3.c │ ├── assert_memory_fill.4.c │ ├── assert_memory_fill.5.c │ ├── assert_memory_fill.6.c │ ├── assert_memory_fill.7.c │ ├── assert_memory_fill.72.c │ ├── assert_memory_fill.73.c │ ├── assert_memory_fill.74.c │ ├── assert_memory_grow.0.c │ ├── assert_memory_grow.1.c │ ├── assert_memory_grow.2.c │ ├── assert_memory_grow.3.c │ ├── assert_memory_grow.4.c │ ├── assert_memory_grow.5.c │ ├── assert_memory_init.0.c │ ├── assert_memory_init.1.c │ ├── assert_memory_init.11.c │ ├── assert_memory_init.12.c │ ├── assert_memory_init.13.c │ ├── assert_memory_init.14.c │ ├── assert_memory_init.15.c │ ├── assert_memory_init.16.c │ ├── assert_memory_init.17.c │ ├── assert_memory_init.18.c │ ├── assert_memory_init.19.c │ ├── assert_memory_init.2.c │ ├── assert_memory_init.20.c │ ├── assert_memory_init.3.c │ ├── assert_memory_init.6.c │ ├── assert_memory_init.7.c │ ├── assert_memory_init.8.c │ ├── assert_memory_init.84.c │ ├── assert_memory_init.85.c │ ├── assert_memory_init.86.c │ ├── assert_memory_init.87.c │ ├── assert_memory_init.88.c │ ├── assert_memory_init.89.c │ ├── assert_memory_init.90.c │ ├── assert_memory_redundancy.0.c │ ├── assert_memory_size.0.c │ ├── assert_memory_size.1.c │ ├── assert_memory_size.2.c │ ├── assert_memory_size.3.c │ ├── assert_memory_trap.0.c │ ├── assert_memory_trap.1.c │ ├── assert_nop.0.c │ ├── assert_return.0.c │ ├── assert_select.0.c │ ├── assert_select.26.c │ ├── assert_shared.0.c │ ├── assert_shared.1.c │ ├── assert_shared.2.c │ ├── assert_shared.3.c │ ├── assert_shared.4.c │ ├── assert_shared.5.c │ ├── assert_shared.6.c │ ├── assert_shared.7.c │ ├── assert_shared.8.c │ ├── assert_stack.0.c │ ├── assert_stack.1.c │ ├── assert_start.3.c │ ├── assert_start.4.c │ ├── assert_start.5.c │ ├── assert_start.6.c │ ├── assert_start.7.c │ ├── assert_store.0.c │ ├── assert_switch.0.c │ ├── assert_traps.0.c │ ├── assert_traps.1.c │ ├── assert_traps.2.c │ ├── assert_traps.3.c │ ├── assert_type.0.c │ ├── assert_unreachable.0.c │ ├── assert_unreached-valid.0.c │ ├── assert_unreached-valid.1.c │ ├── assert_unwind.0.c │ ├── atomic.0.wasm │ ├── atomic.1.wasm │ ├── atomic.10.wasm │ ├── atomic.11.wasm │ ├── atomic.12.wasm │ ├── atomic.13.wasm │ ├── atomic.14.wasm │ ├── atomic.15.wasm │ ├── atomic.16.wasm │ ├── atomic.17.wasm │ ├── atomic.18.wasm │ ├── atomic.19.wasm │ ├── atomic.2.wasm │ ├── atomic.20.wasm │ ├── atomic.21.wasm │ ├── atomic.22.wasm │ ├── atomic.23.wasm │ ├── atomic.24.wasm │ ├── atomic.25.wasm │ ├── atomic.26.wasm │ ├── atomic.27.wasm │ ├── atomic.28.wasm │ ├── atomic.29.wasm │ ├── atomic.3.wasm │ ├── atomic.30.wasm │ ├── atomic.31.wasm │ ├── atomic.32.wasm │ ├── atomic.33.wasm │ ├── atomic.34.wasm │ ├── atomic.35.wasm │ ├── atomic.36.wasm │ ├── atomic.37.wasm │ ├── atomic.38.wasm │ ├── atomic.39.wasm │ ├── atomic.4.wasm │ ├── atomic.40.wasm │ ├── atomic.41.wasm │ ├── atomic.42.wasm │ ├── atomic.43.wasm │ ├── atomic.44.wasm │ ├── atomic.45.wasm │ ├── atomic.46.wasm │ ├── atomic.47.wasm │ ├── atomic.48.wasm │ ├── atomic.49.wasm │ ├── atomic.5.wasm │ ├── atomic.50.wasm │ ├── atomic.6.wasm │ ├── atomic.7.wasm │ ├── atomic.8.wasm │ ├── atomic.9.wasm │ ├── atomic.json │ ├── binary-leb128.0.wasm │ ├── binary-leb128.1.wasm │ ├── binary-leb128.10.wasm │ ├── binary-leb128.11.wasm │ ├── binary-leb128.12.wasm │ ├── binary-leb128.13.wasm │ ├── binary-leb128.14.wasm │ ├── binary-leb128.15.wasm │ ├── binary-leb128.16.wasm │ ├── binary-leb128.17.wasm │ ├── binary-leb128.18.wasm │ ├── binary-leb128.19.wasm │ ├── binary-leb128.2.wasm │ ├── binary-leb128.20.wasm │ ├── binary-leb128.21.wasm │ ├── binary-leb128.22.wasm │ ├── binary-leb128.23.wasm │ ├── binary-leb128.24.wasm │ ├── binary-leb128.25.wasm │ ├── binary-leb128.26.wasm │ ├── binary-leb128.27.wasm │ ├── binary-leb128.28.wasm │ ├── binary-leb128.29.wasm │ ├── binary-leb128.3.wasm │ ├── binary-leb128.30.wasm │ ├── binary-leb128.31.wasm │ ├── binary-leb128.32.wasm │ ├── binary-leb128.33.wasm │ ├── binary-leb128.34.wasm │ ├── binary-leb128.35.wasm │ ├── binary-leb128.36.wasm │ ├── binary-leb128.37.wasm │ ├── binary-leb128.38.wasm │ ├── binary-leb128.39.wasm │ ├── binary-leb128.4.wasm │ ├── binary-leb128.40.wasm │ ├── binary-leb128.41.wasm │ ├── binary-leb128.42.wasm │ ├── binary-leb128.43.wasm │ ├── binary-leb128.44.wasm │ ├── binary-leb128.45.wasm │ ├── binary-leb128.46.wasm │ ├── binary-leb128.47.wasm │ ├── binary-leb128.48.wasm │ ├── binary-leb128.49.wasm │ ├── binary-leb128.5.wasm │ ├── binary-leb128.50.wasm │ ├── binary-leb128.51.wasm │ ├── binary-leb128.52.wasm │ ├── binary-leb128.53.wasm │ ├── binary-leb128.54.wasm │ ├── binary-leb128.55.wasm │ ├── binary-leb128.56.wasm │ ├── binary-leb128.57.wasm │ ├── binary-leb128.58.wasm │ ├── binary-leb128.59.wasm │ ├── binary-leb128.6.wasm │ ├── binary-leb128.60.wasm │ ├── binary-leb128.61.wasm │ ├── binary-leb128.62.wasm │ ├── binary-leb128.63.wasm │ ├── binary-leb128.64.wasm │ ├── binary-leb128.65.wasm │ ├── binary-leb128.66.wasm │ ├── binary-leb128.67.wasm │ ├── binary-leb128.68.wasm │ ├── binary-leb128.69.wasm │ ├── binary-leb128.7.wasm │ ├── binary-leb128.70.wasm │ ├── binary-leb128.71.wasm │ ├── binary-leb128.72.wasm │ ├── binary-leb128.73.wasm │ ├── binary-leb128.74.wasm │ ├── binary-leb128.75.wasm │ ├── binary-leb128.76.wasm │ ├── binary-leb128.77.wasm │ ├── binary-leb128.78.wasm │ ├── binary-leb128.79.wasm │ ├── binary-leb128.8.wasm │ ├── binary-leb128.80.wasm │ ├── binary-leb128.81.wasm │ ├── binary-leb128.82.wasm │ ├── binary-leb128.83.wasm │ ├── binary-leb128.84.wasm │ ├── binary-leb128.85.wasm │ ├── binary-leb128.9.wasm │ ├── binary-leb128.json │ ├── binary.0.wasm │ ├── binary.1.wasm │ ├── binary.10.wasm │ ├── binary.100.wasm │ ├── binary.101.wasm │ ├── binary.102.wasm │ ├── binary.103.wasm │ ├── binary.104.wasm │ ├── binary.105.wasm │ ├── binary.106.wasm │ ├── binary.107.wasm │ ├── binary.108.wasm │ ├── binary.109.wasm │ ├── binary.11.wasm │ ├── binary.110.wasm │ ├── binary.111.wasm │ ├── binary.112.wasm │ ├── binary.113.wasm │ ├── binary.114.wasm │ ├── binary.115.wasm │ ├── binary.116.wasm │ ├── binary.117.wasm │ ├── binary.118.wasm │ ├── binary.119.wasm │ ├── binary.12.wasm │ ├── binary.120.wasm │ ├── binary.121.wasm │ ├── binary.122.wasm │ ├── binary.123.wasm │ ├── binary.124.wasm │ ├── binary.125.wasm │ ├── binary.126.wasm │ ├── binary.127.wasm │ ├── binary.128.wasm │ ├── binary.129.wasm │ ├── binary.13.wasm │ ├── binary.130.wasm │ ├── binary.131.wasm │ ├── binary.132.wasm │ ├── binary.14.wasm │ ├── binary.15.wasm │ ├── binary.16.wasm │ ├── binary.17.wasm │ ├── binary.18.wasm │ ├── binary.19.wasm │ ├── binary.2.wasm │ ├── binary.20.wasm │ ├── binary.21.wasm │ ├── binary.22.wasm │ ├── binary.23.wasm │ ├── binary.24.wasm │ ├── binary.25.wasm │ ├── binary.26.wasm │ ├── binary.27.wasm │ ├── binary.28.wasm │ ├── binary.29.wasm │ ├── binary.3.wasm │ ├── binary.30.wasm │ ├── binary.31.wasm │ ├── binary.32.wasm │ ├── binary.33.wasm │ ├── binary.34.wasm │ ├── binary.35.wasm │ ├── binary.36.wasm │ ├── binary.37.wasm │ ├── binary.38.wasm │ ├── binary.39.wasm │ ├── binary.4.wasm │ ├── binary.40.wasm │ ├── binary.41.wasm │ ├── binary.42.wasm │ ├── binary.43.wasm │ ├── binary.44.wasm │ ├── binary.45.wasm │ ├── binary.46.wasm │ ├── binary.47.wasm │ ├── binary.48.wasm │ ├── binary.49.wasm │ ├── binary.5.wasm │ ├── binary.50.wasm │ ├── binary.51.wasm │ ├── binary.52.wasm │ ├── binary.53.wasm │ ├── binary.54.wasm │ ├── binary.55.wasm │ ├── binary.56.wasm │ ├── binary.57.wasm │ ├── binary.58.wasm │ ├── binary.59.wasm │ ├── binary.6.wasm │ ├── binary.60.wasm │ ├── binary.61.wasm │ ├── binary.62.wasm │ ├── binary.63.wasm │ ├── binary.64.wasm │ ├── binary.65.wasm │ ├── binary.66.wasm │ ├── binary.67.wasm │ ├── binary.68.wasm │ ├── binary.69.wasm │ ├── binary.7.wasm │ ├── binary.70.wasm │ ├── binary.71.wasm │ ├── binary.72.wasm │ ├── binary.73.wasm │ ├── binary.74.wasm │ ├── binary.75.wasm │ ├── binary.76.wasm │ ├── binary.77.wasm │ ├── binary.78.wasm │ ├── binary.79.wasm │ ├── binary.8.wasm │ ├── binary.80.wasm │ ├── binary.81.wasm │ ├── binary.82.wasm │ ├── binary.83.wasm │ ├── binary.84.wasm │ ├── binary.85.wasm │ ├── binary.86.wasm │ ├── binary.87.wasm │ ├── binary.88.wasm │ ├── binary.89.wasm │ ├── binary.9.wasm │ ├── binary.90.wasm │ ├── binary.91.wasm │ ├── binary.92.wasm │ ├── binary.93.wasm │ ├── binary.94.wasm │ ├── binary.95.wasm │ ├── binary.96.wasm │ ├── binary.97.wasm │ ├── binary.98.wasm │ ├── binary.99.wasm │ ├── binary.json │ ├── block.0.wasm │ ├── block.1.wat │ ├── block.10.wat │ ├── block.100.wasm │ ├── block.101.wasm │ ├── block.102.wasm │ ├── block.103.wasm │ ├── block.104.wasm │ ├── block.105.wasm │ ├── block.106.wasm │ ├── block.107.wasm │ ├── block.108.wasm │ ├── block.109.wasm │ ├── block.11.wat │ ├── block.110.wasm │ ├── block.111.wasm │ ├── block.112.wasm │ ├── block.113.wasm │ ├── block.114.wasm │ ├── block.115.wasm │ ├── block.116.wasm │ ├── block.117.wasm │ ├── block.118.wasm │ ├── block.119.wasm │ ├── block.12.wasm │ ├── block.120.wasm │ ├── block.121.wasm │ ├── block.122.wasm │ ├── block.123.wasm │ ├── block.124.wasm │ ├── block.125.wasm │ ├── block.126.wasm │ ├── block.127.wasm │ ├── block.128.wasm │ ├── block.129.wasm │ ├── block.13.wasm │ ├── block.130.wasm │ ├── block.131.wasm │ ├── block.132.wasm │ ├── block.133.wasm │ ├── block.134.wasm │ ├── block.135.wasm │ ├── block.136.wasm │ ├── block.137.wasm │ ├── block.138.wasm │ ├── block.139.wasm │ ├── block.14.wasm │ ├── block.140.wasm │ ├── block.141.wasm │ ├── block.142.wasm │ ├── block.143.wasm │ ├── block.144.wasm │ ├── block.145.wasm │ ├── block.146.wasm │ ├── block.147.wasm │ ├── block.148.wasm │ ├── block.149.wasm │ ├── block.15.wasm │ ├── block.150.wasm │ ├── block.151.wasm │ ├── block.152.wasm │ ├── block.153.wasm │ ├── block.154.wasm │ ├── block.155.wasm │ ├── block.156.wasm │ ├── block.157.wasm │ ├── block.158.wasm │ ├── block.159.wasm │ ├── block.16.wasm │ ├── block.160.wasm │ ├── block.161.wasm │ ├── block.162.wasm │ ├── block.163.wasm │ ├── block.164.wasm │ ├── block.165.wasm │ ├── block.166.wasm │ ├── block.167.wat │ ├── block.168.wat │ ├── block.169.wat │ ├── block.17.wasm │ ├── block.170.wat │ ├── block.18.wasm │ ├── block.19.wasm │ ├── block.2.wat │ ├── block.20.wasm │ ├── block.21.wasm │ ├── block.22.wasm │ ├── block.23.wasm │ ├── block.24.wasm │ ├── block.25.wasm │ ├── block.26.wasm │ ├── block.27.wasm │ ├── block.28.wasm │ ├── block.29.wasm │ ├── block.3.wat │ ├── block.30.wasm │ ├── block.31.wasm │ ├── block.32.wasm │ ├── block.33.wasm │ ├── block.34.wasm │ ├── block.35.wasm │ ├── block.36.wasm │ ├── block.37.wasm │ ├── block.38.wasm │ ├── block.39.wasm │ ├── block.4.wat │ ├── block.40.wasm │ ├── block.41.wasm │ ├── block.42.wasm │ ├── block.43.wasm │ ├── block.44.wasm │ ├── block.45.wasm │ ├── block.46.wasm │ ├── block.47.wasm │ ├── block.48.wasm │ ├── block.49.wasm │ ├── block.5.wat │ ├── block.50.wasm │ ├── block.51.wasm │ ├── block.52.wasm │ ├── block.53.wasm │ ├── block.54.wasm │ ├── block.55.wasm │ ├── block.56.wasm │ ├── block.57.wasm │ ├── block.58.wasm │ ├── block.59.wasm │ ├── block.6.wat │ ├── block.60.wasm │ ├── block.61.wasm │ ├── block.62.wasm │ ├── block.63.wasm │ ├── block.64.wasm │ ├── block.65.wasm │ ├── block.66.wasm │ ├── block.67.wasm │ ├── block.68.wasm │ ├── block.69.wasm │ ├── block.7.wat │ ├── block.70.wasm │ ├── block.71.wasm │ ├── block.72.wasm │ ├── block.73.wasm │ ├── block.74.wasm │ ├── block.75.wasm │ ├── block.76.wasm │ ├── block.77.wasm │ ├── block.78.wasm │ ├── block.79.wasm │ ├── block.8.wat │ ├── block.80.wasm │ ├── block.81.wasm │ ├── block.82.wasm │ ├── block.83.wasm │ ├── block.84.wasm │ ├── block.85.wasm │ ├── block.86.wasm │ ├── block.87.wasm │ ├── block.88.wasm │ ├── block.89.wasm │ ├── block.9.wat │ ├── block.90.wasm │ ├── block.91.wasm │ ├── block.92.wasm │ ├── block.93.wasm │ ├── block.94.wasm │ ├── block.95.wasm │ ├── block.96.wasm │ ├── block.97.wasm │ ├── block.98.wasm │ ├── block.99.wasm │ ├── block.json │ ├── br.0.wasm │ ├── br.1.wasm │ ├── br.10.wasm │ ├── br.11.wasm │ ├── br.12.wasm │ ├── br.13.wasm │ ├── br.14.wasm │ ├── br.15.wasm │ ├── br.16.wasm │ ├── br.17.wasm │ ├── br.18.wasm │ ├── br.19.wasm │ ├── br.2.wasm │ ├── br.20.wasm │ ├── br.3.wasm │ ├── br.4.wasm │ ├── br.5.wasm │ ├── br.6.wasm │ ├── br.7.wasm │ ├── br.8.wasm │ ├── br.9.wasm │ ├── br.json │ ├── br_if.0.wasm │ ├── br_if.1.wasm │ ├── br_if.10.wasm │ ├── br_if.11.wasm │ ├── br_if.12.wasm │ ├── br_if.13.wasm │ ├── br_if.14.wasm │ ├── br_if.15.wasm │ ├── br_if.16.wasm │ ├── br_if.17.wasm │ ├── br_if.18.wasm │ ├── br_if.19.wasm │ ├── br_if.2.wasm │ ├── br_if.20.wasm │ ├── br_if.21.wasm │ ├── br_if.22.wasm │ ├── br_if.23.wasm │ ├── br_if.24.wasm │ ├── br_if.25.wasm │ ├── br_if.26.wasm │ ├── br_if.27.wasm │ ├── br_if.28.wasm │ ├── br_if.29.wasm │ ├── br_if.3.wasm │ ├── br_if.4.wasm │ ├── br_if.5.wasm │ ├── br_if.6.wasm │ ├── br_if.7.wasm │ ├── br_if.8.wasm │ ├── br_if.9.wasm │ ├── br_if.json │ ├── br_table.0.wasm │ ├── br_table.1.wasm │ ├── br_table.10.wasm │ ├── br_table.11.wasm │ ├── br_table.12.wasm │ ├── br_table.13.wasm │ ├── br_table.14.wasm │ ├── br_table.15.wasm │ ├── br_table.16.wasm │ ├── br_table.17.wasm │ ├── br_table.18.wasm │ ├── br_table.19.wasm │ ├── br_table.2.wasm │ ├── br_table.20.wasm │ ├── br_table.21.wasm │ ├── br_table.22.wasm │ ├── br_table.23.wasm │ ├── br_table.24.wasm │ ├── br_table.3.wasm │ ├── br_table.4.wasm │ ├── br_table.5.wasm │ ├── br_table.6.wasm │ ├── br_table.7.wasm │ ├── br_table.8.wasm │ ├── br_table.9.wasm │ ├── br_table.json │ ├── bulk.0.wasm │ ├── bulk.1.wasm │ ├── bulk.2.wasm │ ├── bulk.3.wasm │ ├── bulk.4.wasm │ ├── bulk.5.wasm │ ├── bulk.6.wasm │ ├── bulk.json │ ├── call.0.wasm │ ├── call.1.wasm │ ├── call.10.wasm │ ├── call.11.wasm │ ├── call.12.wasm │ ├── call.13.wasm │ ├── call.14.wasm │ ├── call.15.wasm │ ├── call.16.wasm │ ├── call.17.wasm │ ├── call.18.wasm │ ├── call.2.wasm │ ├── call.3.wasm │ ├── call.4.wasm │ ├── call.5.wasm │ ├── call.6.wasm │ ├── call.7.wasm │ ├── call.8.wasm │ ├── call.9.wasm │ ├── call.json │ ├── call_indirect.0.wasm │ ├── call_indirect.1.wat │ ├── call_indirect.10.wat │ ├── call_indirect.11.wat │ ├── call_indirect.12.wasm │ ├── call_indirect.13.wasm │ ├── call_indirect.14.wasm │ ├── call_indirect.15.wasm │ ├── call_indirect.16.wasm │ ├── call_indirect.17.wasm │ ├── call_indirect.18.wasm │ ├── call_indirect.19.wasm │ ├── call_indirect.2.wat │ ├── call_indirect.20.wasm │ ├── call_indirect.21.wasm │ ├── call_indirect.22.wasm │ ├── call_indirect.23.wasm │ ├── call_indirect.24.wasm │ ├── call_indirect.25.wasm │ ├── call_indirect.26.wasm │ ├── call_indirect.27.wasm │ ├── call_indirect.28.wasm │ ├── call_indirect.29.wasm │ ├── call_indirect.3.wat │ ├── call_indirect.30.wasm │ ├── call_indirect.31.wasm │ ├── call_indirect.32.wasm │ ├── call_indirect.33.wasm │ ├── call_indirect.34.wasm │ ├── call_indirect.4.wat │ ├── call_indirect.5.wat │ ├── call_indirect.6.wat │ ├── call_indirect.7.wat │ ├── call_indirect.8.wat │ ├── call_indirect.9.wat │ ├── call_indirect.json │ ├── const.0.wasm │ ├── const.1.wasm │ ├── const.10.wat │ ├── const.100.wat │ ├── const.101.wat │ ├── const.102.wat │ ├── const.103.wat │ ├── const.104.wat │ ├── const.105.wat │ ├── const.106.wat │ ├── const.107.wat │ ├── const.108.wat │ ├── const.109.wat │ ├── const.11.wat │ ├── const.110.wasm │ ├── const.111.wasm │ ├── const.112.wat │ ├── const.113.wat │ ├── const.114.wasm │ ├── const.115.wasm │ ├── const.116.wat │ ├── const.117.wat │ ├── const.118.wasm │ ├── const.119.wasm │ ├── const.12.wasm │ ├── const.120.wat │ ├── const.121.wat │ ├── const.122.wasm │ ├── const.123.wasm │ ├── const.124.wat │ ├── const.125.wat │ ├── const.126.wasm │ ├── const.127.wasm │ ├── const.128.wasm │ ├── const.129.wasm │ ├── const.13.wasm │ ├── const.130.wasm │ ├── const.131.wasm │ ├── const.132.wasm │ ├── const.133.wasm │ ├── const.134.wasm │ ├── const.135.wasm │ ├── const.136.wat │ ├── const.137.wat │ ├── const.138.wat │ ├── const.139.wat │ ├── const.14.wasm │ ├── const.140.wasm │ ├── const.141.wasm │ ├── const.142.wat │ ├── const.143.wat │ ├── const.144.wasm │ ├── const.145.wasm │ ├── const.146.wat │ ├── const.147.wat │ ├── const.148.wasm │ ├── const.149.wasm │ ├── const.15.wasm │ ├── const.150.wasm │ ├── const.151.wasm │ ├── const.152.wasm │ ├── const.153.wasm │ ├── const.154.wasm │ ├── const.155.wasm │ ├── const.156.wat │ ├── const.157.wat │ ├── const.158.wat │ ├── const.159.wat │ ├── const.16.wasm │ ├── const.160.wasm │ ├── const.161.wasm │ ├── const.162.wat │ ├── const.163.wat │ ├── const.164.wasm │ ├── const.165.wasm │ ├── const.166.wat │ ├── const.167.wat │ ├── const.168.wasm │ ├── const.169.wasm │ ├── const.17.wasm │ ├── const.170.wasm │ ├── const.171.wasm │ ├── const.172.wat │ ├── const.173.wat │ ├── const.174.wat │ ├── const.175.wat │ ├── const.176.wat │ ├── const.177.wat │ ├── const.178.wasm │ ├── const.179.wasm │ ├── const.18.wasm │ ├── const.180.wasm │ ├── const.181.wasm │ ├── const.182.wasm │ ├── const.183.wasm │ ├── const.184.wasm │ ├── const.185.wasm │ ├── const.186.wasm │ ├── const.187.wasm │ ├── const.188.wasm │ ├── const.189.wasm │ ├── const.19.wasm │ ├── const.190.wasm │ ├── const.191.wasm │ ├── const.192.wasm │ ├── const.193.wasm │ ├── const.194.wasm │ ├── const.195.wasm │ ├── const.196.wasm │ ├── const.197.wasm │ ├── const.198.wasm │ ├── const.199.wasm │ ├── const.2.wat │ ├── const.20.wasm │ ├── const.200.wasm │ ├── const.201.wasm │ ├── const.202.wasm │ ├── const.203.wasm │ ├── const.204.wasm │ ├── const.205.wasm │ ├── const.206.wasm │ ├── const.207.wasm │ ├── const.208.wasm │ ├── const.209.wasm │ ├── const.21.wasm │ ├── const.210.wasm │ ├── const.211.wasm │ ├── const.212.wasm │ ├── const.213.wasm │ ├── const.214.wasm │ ├── const.215.wasm │ ├── const.216.wasm │ ├── const.217.wasm │ ├── const.218.wasm │ ├── const.219.wasm │ ├── const.22.wasm │ ├── const.220.wasm │ ├── const.221.wasm │ ├── const.222.wasm │ ├── const.223.wasm │ ├── const.224.wasm │ ├── const.225.wasm │ ├── const.226.wasm │ ├── const.227.wasm │ ├── const.228.wasm │ ├── const.229.wasm │ ├── const.23.wasm │ ├── const.230.wasm │ ├── const.231.wasm │ ├── const.232.wasm │ ├── const.233.wasm │ ├── const.234.wasm │ ├── const.235.wasm │ ├── const.236.wasm │ ├── const.237.wasm │ ├── const.238.wasm │ ├── const.239.wasm │ ├── const.24.wasm │ ├── const.240.wasm │ ├── const.241.wasm │ ├── const.242.wasm │ ├── const.243.wasm │ ├── const.244.wasm │ ├── const.245.wasm │ ├── const.246.wasm │ ├── const.247.wasm │ ├── const.248.wasm │ ├── const.249.wasm │ ├── const.25.wasm │ ├── const.250.wasm │ ├── const.251.wasm │ ├── const.252.wasm │ ├── const.253.wasm │ ├── const.254.wasm │ ├── const.255.wasm │ ├── const.256.wasm │ ├── const.257.wasm │ ├── const.258.wasm │ ├── const.259.wasm │ ├── const.26.wasm │ ├── const.260.wasm │ ├── const.261.wasm │ ├── const.262.wasm │ ├── const.263.wasm │ ├── const.264.wasm │ ├── const.265.wasm │ ├── const.266.wasm │ ├── const.267.wasm │ ├── const.268.wasm │ ├── const.269.wasm │ ├── const.27.wasm │ ├── const.270.wasm │ ├── const.271.wasm │ ├── const.272.wasm │ ├── const.273.wasm │ ├── const.274.wasm │ ├── const.275.wasm │ ├── const.276.wasm │ ├── const.277.wasm │ ├── const.278.wasm │ ├── const.279.wasm │ ├── const.28.wasm │ ├── const.280.wasm │ ├── const.281.wasm │ ├── const.282.wasm │ ├── const.283.wasm │ ├── const.284.wasm │ ├── const.285.wasm │ ├── const.286.wasm │ ├── const.287.wasm │ ├── const.288.wasm │ ├── const.289.wasm │ ├── const.29.wasm │ ├── const.290.wasm │ ├── const.291.wasm │ ├── const.292.wasm │ ├── const.293.wasm │ ├── const.294.wasm │ ├── const.295.wasm │ ├── const.296.wasm │ ├── const.297.wasm │ ├── const.298.wasm │ ├── const.299.wasm │ ├── const.3.wat │ ├── const.30.wasm │ ├── const.300.wasm │ ├── const.301.wasm │ ├── const.302.wasm │ ├── const.303.wasm │ ├── const.304.wasm │ ├── const.305.wasm │ ├── const.306.wasm │ ├── const.307.wasm │ ├── const.308.wasm │ ├── const.309.wasm │ ├── const.31.wasm │ ├── const.310.wasm │ ├── const.311.wasm │ ├── const.312.wasm │ ├── const.313.wasm │ ├── const.314.wasm │ ├── const.315.wasm │ ├── const.316.wasm │ ├── const.317.wasm │ ├── const.318.wasm │ ├── const.319.wasm │ ├── const.32.wasm │ ├── const.320.wasm │ ├── const.321.wasm │ ├── const.322.wasm │ ├── const.323.wasm │ ├── const.324.wasm │ ├── const.325.wasm │ ├── const.326.wasm │ ├── const.327.wasm │ ├── const.328.wasm │ ├── const.329.wasm │ ├── const.33.wasm │ ├── const.330.wasm │ ├── const.331.wasm │ ├── const.332.wasm │ ├── const.333.wasm │ ├── const.334.wasm │ ├── const.335.wasm │ ├── const.336.wasm │ ├── const.337.wasm │ ├── const.338.wasm │ ├── const.339.wasm │ ├── const.34.wasm │ ├── const.340.wasm │ ├── const.341.wasm │ ├── const.342.wasm │ ├── const.343.wasm │ ├── const.344.wasm │ ├── const.345.wasm │ ├── const.346.wasm │ ├── const.347.wasm │ ├── const.348.wasm │ ├── const.349.wasm │ ├── const.35.wasm │ ├── const.350.wasm │ ├── const.351.wasm │ ├── const.352.wasm │ ├── const.353.wasm │ ├── const.354.wasm │ ├── const.355.wasm │ ├── const.356.wasm │ ├── const.357.wasm │ ├── const.358.wasm │ ├── const.359.wasm │ ├── const.36.wat │ ├── const.360.wasm │ ├── const.361.wasm │ ├── const.362.wasm │ ├── const.363.wasm │ ├── const.364.wasm │ ├── const.365.wasm │ ├── const.366.wasm │ ├── const.367.wasm │ ├── const.368.wasm │ ├── const.369.wasm │ ├── const.37.wat │ ├── const.370.wasm │ ├── const.371.wasm │ ├── const.372.wasm │ ├── const.373.wasm │ ├── const.374.wasm │ ├── const.375.wasm │ ├── const.376.wasm │ ├── const.377.wasm │ ├── const.378.wasm │ ├── const.379.wasm │ ├── const.38.wat │ ├── const.380.wasm │ ├── const.381.wasm │ ├── const.382.wasm │ ├── const.383.wasm │ ├── const.384.wasm │ ├── const.385.wasm │ ├── const.386.wasm │ ├── const.387.wasm │ ├── const.388.wasm │ ├── const.389.wasm │ ├── const.39.wat │ ├── const.390.wasm │ ├── const.391.wasm │ ├── const.392.wasm │ ├── const.393.wasm │ ├── const.394.wasm │ ├── const.395.wasm │ ├── const.396.wasm │ ├── const.397.wasm │ ├── const.398.wasm │ ├── const.399.wasm │ ├── const.4.wat │ ├── const.40.wat │ ├── const.400.wasm │ ├── const.401.wasm │ ├── const.402.wasm │ ├── const.403.wasm │ ├── const.404.wasm │ ├── const.405.wasm │ ├── const.406.wasm │ ├── const.407.wasm │ ├── const.408.wasm │ ├── const.409.wasm │ ├── const.41.wat │ ├── const.410.wasm │ ├── const.411.wasm │ ├── const.412.wasm │ ├── const.413.wasm │ ├── const.414.wasm │ ├── const.415.wasm │ ├── const.416.wasm │ ├── const.417.wasm │ ├── const.418.wasm │ ├── const.419.wasm │ ├── const.42.wat │ ├── const.420.wasm │ ├── const.421.wasm │ ├── const.422.wasm │ ├── const.423.wasm │ ├── const.424.wasm │ ├── const.425.wasm │ ├── const.426.wasm │ ├── const.427.wasm │ ├── const.428.wasm │ ├── const.429.wasm │ ├── const.43.wat │ ├── const.430.wasm │ ├── const.431.wasm │ ├── const.432.wasm │ ├── const.433.wasm │ ├── const.434.wasm │ ├── const.435.wasm │ ├── const.436.wasm │ ├── const.437.wasm │ ├── const.438.wasm │ ├── const.439.wasm │ ├── const.44.wat │ ├── const.440.wasm │ ├── const.441.wasm │ ├── const.442.wasm │ ├── const.443.wasm │ ├── const.444.wasm │ ├── const.445.wasm │ ├── const.446.wasm │ ├── const.447.wasm │ ├── const.448.wasm │ ├── const.449.wasm │ ├── const.45.wat │ ├── const.450.wasm │ ├── const.451.wasm │ ├── const.452.wasm │ ├── const.453.wasm │ ├── const.454.wasm │ ├── const.455.wasm │ ├── const.456.wasm │ ├── const.457.wasm │ ├── const.458.wasm │ ├── const.459.wasm │ ├── const.46.wat │ ├── const.460.wasm │ ├── const.461.wasm │ ├── const.462.wasm │ ├── const.463.wasm │ ├── const.464.wasm │ ├── const.465.wasm │ ├── const.466.wasm │ ├── const.467.wasm │ ├── const.468.wasm │ ├── const.469.wasm │ ├── const.47.wat │ ├── const.470.wasm │ ├── const.471.wasm │ ├── const.472.wasm │ ├── const.473.wasm │ ├── const.474.wasm │ ├── const.475.wasm │ ├── const.476.wasm │ ├── const.477.wasm │ ├── const.48.wat │ ├── const.49.wat │ ├── const.5.wat │ ├── const.50.wat │ ├── const.51.wat │ ├── const.52.wat │ ├── const.53.wat │ ├── const.54.wat │ ├── const.55.wasm │ ├── const.56.wasm │ ├── const.57.wasm │ ├── const.58.wasm │ ├── const.59.wasm │ ├── const.6.wasm │ ├── const.60.wasm │ ├── const.61.wasm │ ├── const.62.wasm │ ├── const.63.wasm │ ├── const.64.wasm │ ├── const.65.wasm │ ├── const.66.wasm │ ├── const.67.wasm │ ├── const.68.wasm │ ├── const.69.wasm │ ├── const.7.wasm │ ├── const.70.wasm │ ├── const.71.wasm │ ├── const.72.wasm │ ├── const.73.wasm │ ├── const.74.wasm │ ├── const.75.wasm │ ├── const.76.wasm │ ├── const.77.wasm │ ├── const.78.wasm │ ├── const.79.wasm │ ├── const.8.wat │ ├── const.80.wasm │ ├── const.81.wasm │ ├── const.82.wasm │ ├── const.83.wasm │ ├── const.84.wasm │ ├── const.85.wasm │ ├── const.86.wasm │ ├── const.87.wasm │ ├── const.88.wasm │ ├── const.89.wasm │ ├── const.9.wat │ ├── const.90.wasm │ ├── const.91.wat │ ├── const.92.wat │ ├── const.93.wat │ ├── const.94.wat │ ├── const.95.wat │ ├── const.96.wat │ ├── const.97.wat │ ├── const.98.wat │ ├── const.99.wat │ ├── const.json │ ├── conversions.0.wasm │ ├── conversions.1.wasm │ ├── conversions.10.wasm │ ├── conversions.11.wasm │ ├── conversions.12.wasm │ ├── conversions.13.wasm │ ├── conversions.14.wasm │ ├── conversions.15.wasm │ ├── conversions.16.wasm │ ├── conversions.17.wasm │ ├── conversions.18.wasm │ ├── conversions.19.wasm │ ├── conversions.2.wasm │ ├── conversions.20.wasm │ ├── conversions.21.wasm │ ├── conversions.22.wasm │ ├── conversions.23.wasm │ ├── conversions.24.wasm │ ├── conversions.25.wasm │ ├── conversions.3.wasm │ ├── conversions.4.wasm │ ├── conversions.5.wasm │ ├── conversions.6.wasm │ ├── conversions.7.wasm │ ├── conversions.8.wasm │ ├── conversions.9.wasm │ ├── conversions.json │ ├── custom.0.wasm │ ├── custom.1.wasm │ ├── custom.10.wasm │ ├── custom.2.wasm │ ├── custom.3.wasm │ ├── custom.4.wasm │ ├── custom.5.wasm │ ├── custom.6.wasm │ ├── custom.7.wasm │ ├── custom.8.wasm │ ├── custom.9.wasm │ ├── custom.json │ ├── data.0.wasm │ ├── data.1.wasm │ ├── data.10.wasm │ ├── data.11.wasm │ ├── data.12.wasm │ ├── data.13.wasm │ ├── data.14.wasm │ ├── data.15.wasm │ ├── data.16.wasm │ ├── data.17.wasm │ ├── data.18.wasm │ ├── data.19.wasm │ ├── data.2.wasm │ ├── data.20.wasm │ ├── data.21.wasm │ ├── data.22.wasm │ ├── data.23.wasm │ ├── data.24.wasm │ ├── data.25.wasm │ ├── data.26.wasm │ ├── data.27.wasm │ ├── data.28.wasm │ ├── data.29.wasm │ ├── data.3.wasm │ ├── data.30.wasm │ ├── data.31.wasm │ ├── data.32.wasm │ ├── data.33.wasm │ ├── data.34.wasm │ ├── data.35.wasm │ ├── data.36.wasm │ ├── data.37.wasm │ ├── data.38.wasm │ ├── data.39.wasm │ ├── data.4.wasm │ ├── data.40.wasm │ ├── data.41.wasm │ ├── data.42.wasm │ ├── data.43.wasm │ ├── data.44.wasm │ ├── data.45.wasm │ ├── data.46.wasm │ ├── data.47.wasm │ ├── data.48.wasm │ ├── data.49.wasm │ ├── data.5.wasm │ ├── data.50.wasm │ ├── data.51.wasm │ ├── data.52.wasm │ ├── data.53.wasm │ ├── data.54.wasm │ ├── data.55.wasm │ ├── data.56.wasm │ ├── data.57.wasm │ ├── data.58.wasm │ ├── data.59.wasm │ ├── data.6.wasm │ ├── data.7.wasm │ ├── data.8.wasm │ ├── data.9.wasm │ ├── data.json │ ├── elem.0.wasm │ ├── elem.1.wasm │ ├── elem.10.wasm │ ├── elem.11.wasm │ ├── elem.12.wasm │ ├── elem.13.wasm │ ├── elem.14.wasm │ ├── elem.15.wasm │ ├── elem.16.wasm │ ├── elem.17.wasm │ ├── elem.18.wasm │ ├── elem.19.wasm │ ├── elem.2.wasm │ ├── elem.20.wasm │ ├── elem.21.wasm │ ├── elem.22.wasm │ ├── elem.23.wasm │ ├── elem.24.wasm │ ├── elem.25.wasm │ ├── elem.26.wasm │ ├── elem.27.wasm │ ├── elem.28.wasm │ ├── elem.29.wasm │ ├── elem.3.wasm │ ├── elem.30.wasm │ ├── elem.31.wasm │ ├── elem.32.wasm │ ├── elem.33.wasm │ ├── elem.34.wasm │ ├── elem.35.wasm │ ├── elem.36.wasm │ ├── elem.37.wasm │ ├── elem.38.wasm │ ├── elem.39.wasm │ ├── elem.4.wasm │ ├── elem.40.wasm │ ├── elem.41.wasm │ ├── elem.42.wasm │ ├── elem.43.wasm │ ├── elem.44.wasm │ ├── elem.45.wasm │ ├── elem.46.wasm │ ├── elem.47.wasm │ ├── elem.48.wasm │ ├── elem.5.wasm │ ├── elem.6.wasm │ ├── elem.7.wasm │ ├── elem.8.wasm │ ├── elem.9.wasm │ ├── elem.json │ ├── endianness.0.wasm │ ├── endianness.json │ ├── export_imported_function.0.wasm │ ├── export_imported_function.json │ ├── exports.0.wasm │ ├── exports.1.wasm │ ├── exports.10.wasm │ ├── exports.11.wasm │ ├── exports.12.wasm │ ├── exports.13.wasm │ ├── exports.14.wasm │ ├── exports.15.wasm │ ├── exports.16.wasm │ ├── exports.17.wasm │ ├── exports.18.wasm │ ├── exports.19.wasm │ ├── exports.2.wasm │ ├── exports.20.wasm │ ├── exports.21.wasm │ ├── exports.22.wasm │ ├── exports.23.wasm │ ├── exports.24.wasm │ ├── exports.25.wasm │ ├── exports.26.wasm │ ├── exports.27.wasm │ ├── exports.28.wasm │ ├── exports.29.wasm │ ├── exports.3.wasm │ ├── exports.30.wasm │ ├── exports.31.wasm │ ├── exports.32.wasm │ ├── exports.33.wasm │ ├── exports.34.wasm │ ├── exports.35.wasm │ ├── exports.36.wasm │ ├── exports.37.wasm │ ├── exports.38.wasm │ ├── exports.39.wasm │ ├── exports.4.wasm │ ├── exports.40.wasm │ ├── exports.41.wasm │ ├── exports.42.wasm │ ├── exports.43.wasm │ ├── exports.44.wasm │ ├── exports.45.wasm │ ├── exports.46.wasm │ ├── exports.47.wasm │ ├── exports.48.wasm │ ├── exports.49.wasm │ ├── exports.5.wasm │ ├── exports.50.wasm │ ├── exports.51.wasm │ ├── exports.52.wasm │ ├── exports.53.wasm │ ├── exports.54.wasm │ ├── exports.55.wasm │ ├── exports.56.wasm │ ├── exports.57.wasm │ ├── exports.58.wasm │ ├── exports.59.wasm │ ├── exports.6.wasm │ ├── exports.60.wasm │ ├── exports.61.wasm │ ├── exports.62.wasm │ ├── exports.63.wasm │ ├── exports.64.wasm │ ├── exports.65.wasm │ ├── exports.66.wasm │ ├── exports.67.wasm │ ├── exports.68.wasm │ ├── exports.69.wasm │ ├── exports.7.wasm │ ├── exports.70.wasm │ ├── exports.71.wasm │ ├── exports.72.wasm │ ├── exports.73.wasm │ ├── exports.74.wasm │ ├── exports.75.wasm │ ├── exports.76.wasm │ ├── exports.77.wasm │ ├── exports.78.wasm │ ├── exports.8.wasm │ ├── exports.9.wasm │ ├── exports.json │ ├── f32.0.wasm │ ├── f32.1.wasm │ ├── f32.10.wasm │ ├── f32.11.wasm │ ├── f32.12.wat │ ├── f32.13.wat │ ├── f32.2.wasm │ ├── f32.3.wasm │ ├── f32.4.wasm │ ├── f32.5.wasm │ ├── f32.6.wasm │ ├── f32.7.wasm │ ├── f32.8.wasm │ ├── f32.9.wasm │ ├── f32.json │ ├── f32_bitwise.0.wasm │ ├── f32_bitwise.1.wasm │ ├── f32_bitwise.2.wasm │ ├── f32_bitwise.3.wasm │ ├── f32_bitwise.json │ ├── f32_cmp.0.wasm │ ├── f32_cmp.1.wasm │ ├── f32_cmp.2.wasm │ ├── f32_cmp.3.wasm │ ├── f32_cmp.4.wasm │ ├── f32_cmp.5.wasm │ ├── f32_cmp.6.wasm │ ├── f32_cmp.json │ ├── f64.0.wasm │ ├── f64.1.wasm │ ├── f64.10.wasm │ ├── f64.11.wasm │ ├── f64.12.wat │ ├── f64.13.wat │ ├── f64.2.wasm │ ├── f64.3.wasm │ ├── f64.4.wasm │ ├── f64.5.wasm │ ├── f64.6.wasm │ ├── f64.7.wasm │ ├── f64.8.wasm │ ├── f64.9.wasm │ ├── f64.json │ ├── f64_bitwise.0.wasm │ ├── f64_bitwise.1.wasm │ ├── f64_bitwise.2.wasm │ ├── f64_bitwise.3.wasm │ ├── f64_bitwise.json │ ├── f64_cmp.0.wasm │ ├── f64_cmp.1.wasm │ ├── f64_cmp.2.wasm │ ├── f64_cmp.3.wasm │ ├── f64_cmp.4.wasm │ ├── f64_cmp.5.wasm │ ├── f64_cmp.6.wasm │ ├── f64_cmp.json │ ├── fac.0.wasm │ ├── fac.json │ ├── float_exprs.0.wasm │ ├── float_exprs.1.wasm │ ├── float_exprs.10.wasm │ ├── float_exprs.11.wasm │ ├── float_exprs.12.wasm │ ├── float_exprs.13.wasm │ ├── float_exprs.14.wasm │ ├── float_exprs.15.wasm │ ├── float_exprs.16.wasm │ ├── float_exprs.17.wasm │ ├── float_exprs.18.wasm │ ├── float_exprs.19.wasm │ ├── float_exprs.2.wasm │ ├── float_exprs.20.wasm │ ├── float_exprs.21.wasm │ ├── float_exprs.22.wasm │ ├── float_exprs.23.wasm │ ├── float_exprs.24.wasm │ ├── float_exprs.25.wasm │ ├── float_exprs.26.wasm │ ├── float_exprs.27.wasm │ ├── float_exprs.28.wasm │ ├── float_exprs.29.wasm │ ├── float_exprs.3.wasm │ ├── float_exprs.30.wasm │ ├── float_exprs.31.wasm │ ├── float_exprs.32.wasm │ ├── float_exprs.33.wasm │ ├── float_exprs.34.wasm │ ├── float_exprs.35.wasm │ ├── float_exprs.36.wasm │ ├── float_exprs.37.wasm │ ├── float_exprs.38.wasm │ ├── float_exprs.39.wasm │ ├── float_exprs.4.wasm │ ├── float_exprs.40.wasm │ ├── float_exprs.41.wasm │ ├── float_exprs.42.wasm │ ├── float_exprs.43.wasm │ ├── float_exprs.44.wasm │ ├── float_exprs.45.wasm │ ├── float_exprs.46.wasm │ ├── float_exprs.47.wasm │ ├── float_exprs.48.wasm │ ├── float_exprs.49.wasm │ ├── float_exprs.5.wasm │ ├── float_exprs.50.wasm │ ├── float_exprs.51.wasm │ ├── float_exprs.52.wasm │ ├── float_exprs.53.wasm │ ├── float_exprs.54.wasm │ ├── float_exprs.55.wasm │ ├── float_exprs.56.wasm │ ├── float_exprs.57.wasm │ ├── float_exprs.58.wasm │ ├── float_exprs.59.wasm │ ├── float_exprs.6.wasm │ ├── float_exprs.60.wasm │ ├── float_exprs.61.wasm │ ├── float_exprs.62.wasm │ ├── float_exprs.63.wasm │ ├── float_exprs.64.wasm │ ├── float_exprs.65.wasm │ ├── float_exprs.66.wasm │ ├── float_exprs.67.wasm │ ├── float_exprs.68.wasm │ ├── float_exprs.69.wasm │ ├── float_exprs.7.wasm │ ├── float_exprs.70.wasm │ ├── float_exprs.71.wasm │ ├── float_exprs.72.wasm │ ├── float_exprs.73.wasm │ ├── float_exprs.74.wasm │ ├── float_exprs.75.wasm │ ├── float_exprs.76.wasm │ ├── float_exprs.77.wasm │ ├── float_exprs.78.wasm │ ├── float_exprs.79.wasm │ ├── float_exprs.8.wasm │ ├── float_exprs.80.wasm │ ├── float_exprs.81.wasm │ ├── float_exprs.82.wasm │ ├── float_exprs.83.wasm │ ├── float_exprs.84.wasm │ ├── float_exprs.85.wasm │ ├── float_exprs.86.wasm │ ├── float_exprs.87.wasm │ ├── float_exprs.88.wasm │ ├── float_exprs.89.wasm │ ├── float_exprs.9.wasm │ ├── float_exprs.90.wasm │ ├── float_exprs.91.wasm │ ├── float_exprs.92.wasm │ ├── float_exprs.93.wasm │ ├── float_exprs.94.wasm │ ├── float_exprs.95.wasm │ ├── float_exprs.96.wasm │ ├── float_exprs.97.wasm │ ├── float_exprs.json │ ├── float_literals.0.wasm │ ├── float_literals.1.wasm │ ├── float_literals.10.wat │ ├── float_literals.11.wat │ ├── float_literals.12.wat │ ├── float_literals.13.wat │ ├── float_literals.14.wat │ ├── float_literals.15.wat │ ├── float_literals.16.wat │ ├── float_literals.17.wat │ ├── float_literals.18.wat │ ├── float_literals.19.wat │ ├── float_literals.2.wat │ ├── float_literals.20.wat │ ├── float_literals.21.wat │ ├── float_literals.22.wat │ ├── float_literals.23.wat │ ├── float_literals.24.wat │ ├── float_literals.25.wat │ ├── float_literals.26.wat │ ├── float_literals.27.wat │ ├── float_literals.28.wat │ ├── float_literals.29.wat │ ├── float_literals.3.wat │ ├── float_literals.30.wat │ ├── float_literals.31.wat │ ├── float_literals.32.wat │ ├── float_literals.33.wat │ ├── float_literals.34.wat │ ├── float_literals.35.wat │ ├── float_literals.36.wat │ ├── float_literals.37.wat │ ├── float_literals.38.wat │ ├── float_literals.39.wat │ ├── float_literals.4.wat │ ├── float_literals.40.wat │ ├── float_literals.41.wat │ ├── float_literals.42.wat │ ├── float_literals.43.wat │ ├── float_literals.44.wat │ ├── float_literals.45.wat │ ├── float_literals.46.wat │ ├── float_literals.47.wat │ ├── float_literals.48.wat │ ├── float_literals.49.wat │ ├── float_literals.5.wat │ ├── float_literals.50.wat │ ├── float_literals.51.wat │ ├── float_literals.52.wat │ ├── float_literals.53.wat │ ├── float_literals.54.wat │ ├── float_literals.55.wat │ ├── float_literals.56.wat │ ├── float_literals.57.wat │ ├── float_literals.58.wat │ ├── float_literals.59.wat │ ├── float_literals.6.wat │ ├── float_literals.60.wat │ ├── float_literals.61.wat │ ├── float_literals.62.wat │ ├── float_literals.63.wat │ ├── float_literals.64.wat │ ├── float_literals.65.wat │ ├── float_literals.66.wat │ ├── float_literals.67.wat │ ├── float_literals.68.wat │ ├── float_literals.69.wat │ ├── float_literals.7.wat │ ├── float_literals.70.wat │ ├── float_literals.71.wat │ ├── float_literals.72.wat │ ├── float_literals.73.wat │ ├── float_literals.74.wat │ ├── float_literals.75.wat │ ├── float_literals.76.wat │ ├── float_literals.77.wat │ ├── float_literals.78.wat │ ├── float_literals.79.wat │ ├── float_literals.8.wat │ ├── float_literals.9.wat │ ├── float_literals.json │ ├── float_memory.0.wasm │ ├── float_memory.1.wasm │ ├── float_memory.2.wasm │ ├── float_memory.3.wasm │ ├── float_memory.4.wasm │ ├── float_memory.5.wasm │ ├── float_memory.json │ ├── float_misc.0.wasm │ ├── float_misc.json │ ├── forward.0.wasm │ ├── forward.json │ ├── func.0.wasm │ ├── func.1.wasm │ ├── func.10.wat │ ├── func.11.wat │ ├── func.12.wat │ ├── func.13.wat │ ├── func.14.wat │ ├── func.15.wat │ ├── func.16.wasm │ ├── func.17.wasm │ ├── func.18.wasm │ ├── func.19.wasm │ ├── func.2.wasm │ ├── func.20.wasm │ ├── func.21.wasm │ ├── func.22.wasm │ ├── func.23.wasm │ ├── func.24.wasm │ ├── func.25.wasm │ ├── func.26.wasm │ ├── func.27.wasm │ ├── func.28.wasm │ ├── func.29.wasm │ ├── func.3.wat │ ├── func.30.wasm │ ├── func.31.wasm │ ├── func.32.wasm │ ├── func.33.wasm │ ├── func.34.wasm │ ├── func.35.wasm │ ├── func.36.wasm │ ├── func.37.wasm │ ├── func.38.wasm │ ├── func.39.wasm │ ├── func.4.wasm │ ├── func.40.wasm │ ├── func.41.wasm │ ├── func.42.wasm │ ├── func.43.wasm │ ├── func.44.wasm │ ├── func.45.wasm │ ├── func.46.wasm │ ├── func.47.wasm │ ├── func.48.wasm │ ├── func.49.wasm │ ├── func.5.wasm │ ├── func.50.wasm │ ├── func.51.wasm │ ├── func.52.wasm │ ├── func.53.wasm │ ├── func.54.wasm │ ├── func.55.wasm │ ├── func.56.wasm │ ├── func.57.wasm │ ├── func.58.wasm │ ├── func.59.wasm │ ├── func.6.wat │ ├── func.60.wasm │ ├── func.61.wasm │ ├── func.62.wasm │ ├── func.63.wasm │ ├── func.64.wat │ ├── func.65.wat │ ├── func.66.wat │ ├── func.67.wat │ ├── func.68.wat │ ├── func.69.wat │ ├── func.7.wat │ ├── func.70.wat │ ├── func.71.wat │ ├── func.72.wat │ ├── func.73.wat │ ├── func.74.wat │ ├── func.75.wat │ ├── func.8.wat │ ├── func.9.wat │ ├── func.json │ ├── func_ptrs.0.wasm │ ├── func_ptrs.1.wasm │ ├── func_ptrs.2.wasm │ ├── func_ptrs.3.wasm │ ├── func_ptrs.4.wasm │ ├── func_ptrs.5.wasm │ ├── func_ptrs.6.wasm │ ├── func_ptrs.7.wasm │ ├── func_ptrs.8.wasm │ ├── func_ptrs.9.wasm │ ├── func_ptrs.json │ ├── global.0.wasm │ ├── global.1.wasm │ ├── global.10.wasm │ ├── global.11.wasm │ ├── global.12.wasm │ ├── global.13.wasm │ ├── global.14.wasm │ ├── global.15.wasm │ ├── global.16.wasm │ ├── global.17.wasm │ ├── global.18.wasm │ ├── global.19.wasm │ ├── global.2.wasm │ ├── global.20.wasm │ ├── global.21.wasm │ ├── global.22.wasm │ ├── global.23.wasm │ ├── global.24.wasm │ ├── global.25.wasm │ ├── global.26.wasm │ ├── global.27.wasm │ ├── global.28.wasm │ ├── global.29.wasm │ ├── global.3.wasm │ ├── global.30.wasm │ ├── global.31.wasm │ ├── global.32.wasm │ ├── global.33.wasm │ ├── global.34.wasm │ ├── global.35.wasm │ ├── global.36.wasm │ ├── global.37.wasm │ ├── global.38.wasm │ ├── global.39.wasm │ ├── global.4.wasm │ ├── global.40.wasm │ ├── global.41.wasm │ ├── global.42.wasm │ ├── global.43.wasm │ ├── global.44.wasm │ ├── global.45.wasm │ ├── global.46.wasm │ ├── global.47.wasm │ ├── global.48.wat │ ├── global.49.wat │ ├── global.5.wasm │ ├── global.50.wat │ ├── global.6.wasm │ ├── global.7.wasm │ ├── global.8.wasm │ ├── global.9.wasm │ ├── global.json │ ├── i32.0.wasm │ ├── i32.1.wasm │ ├── i32.10.wasm │ ├── i32.11.wasm │ ├── i32.12.wasm │ ├── i32.13.wasm │ ├── i32.14.wasm │ ├── i32.15.wasm │ ├── i32.16.wasm │ ├── i32.17.wasm │ ├── i32.18.wasm │ ├── i32.19.wasm │ ├── i32.2.wasm │ ├── i32.20.wasm │ ├── i32.21.wasm │ ├── i32.22.wasm │ ├── i32.23.wasm │ ├── i32.24.wasm │ ├── i32.25.wasm │ ├── i32.26.wasm │ ├── i32.27.wasm │ ├── i32.28.wasm │ ├── i32.29.wasm │ ├── i32.3.wasm │ ├── i32.30.wasm │ ├── i32.31.wasm │ ├── i32.32.wasm │ ├── i32.33.wasm │ ├── i32.34.wasm │ ├── i32.35.wasm │ ├── i32.36.wasm │ ├── i32.37.wasm │ ├── i32.38.wasm │ ├── i32.39.wasm │ ├── i32.4.wasm │ ├── i32.40.wasm │ ├── i32.41.wasm │ ├── i32.42.wasm │ ├── i32.43.wasm │ ├── i32.44.wasm │ ├── i32.45.wasm │ ├── i32.46.wasm │ ├── i32.47.wasm │ ├── i32.48.wasm │ ├── i32.49.wasm │ ├── i32.5.wasm │ ├── i32.50.wasm │ ├── i32.51.wasm │ ├── i32.52.wasm │ ├── i32.53.wasm │ ├── i32.54.wasm │ ├── i32.55.wasm │ ├── i32.56.wasm │ ├── i32.57.wasm │ ├── i32.58.wasm │ ├── i32.59.wasm │ ├── i32.6.wasm │ ├── i32.60.wasm │ ├── i32.61.wasm │ ├── i32.62.wasm │ ├── i32.63.wasm │ ├── i32.64.wasm │ ├── i32.65.wasm │ ├── i32.66.wasm │ ├── i32.67.wasm │ ├── i32.68.wasm │ ├── i32.69.wasm │ ├── i32.7.wasm │ ├── i32.70.wasm │ ├── i32.71.wasm │ ├── i32.72.wasm │ ├── i32.73.wasm │ ├── i32.74.wasm │ ├── i32.75.wasm │ ├── i32.76.wasm │ ├── i32.77.wasm │ ├── i32.78.wasm │ ├── i32.79.wasm │ ├── i32.8.wasm │ ├── i32.80.wasm │ ├── i32.81.wasm │ ├── i32.82.wasm │ ├── i32.83.wasm │ ├── i32.84.wat │ ├── i32.85.wat │ ├── i32.9.wasm │ ├── i32.json │ ├── i64.0.wasm │ ├── i64.1.wasm │ ├── i64.10.wasm │ ├── i64.11.wasm │ ├── i64.12.wasm │ ├── i64.13.wasm │ ├── i64.14.wasm │ ├── i64.15.wasm │ ├── i64.16.wasm │ ├── i64.17.wasm │ ├── i64.18.wasm │ ├── i64.19.wasm │ ├── i64.2.wasm │ ├── i64.20.wasm │ ├── i64.21.wasm │ ├── i64.22.wasm │ ├── i64.23.wasm │ ├── i64.24.wasm │ ├── i64.25.wasm │ ├── i64.26.wasm │ ├── i64.27.wasm │ ├── i64.28.wasm │ ├── i64.29.wasm │ ├── i64.3.wasm │ ├── i64.30.wat │ ├── i64.31.wat │ ├── i64.4.wasm │ ├── i64.5.wasm │ ├── i64.6.wasm │ ├── i64.7.wasm │ ├── i64.8.wasm │ ├── i64.9.wasm │ ├── i64.json │ ├── if.0.wasm │ ├── if.1.wat │ ├── if.10.wat │ ├── if.100.wasm │ ├── if.101.wasm │ ├── if.102.wasm │ ├── if.103.wasm │ ├── if.104.wat │ ├── if.105.wat │ ├── if.106.wat │ ├── if.107.wat │ ├── if.108.wat │ ├── if.109.wat │ ├── if.11.wat │ ├── if.110.wat │ ├── if.111.wat │ ├── if.112.wat │ ├── if.113.wat │ ├── if.114.wat │ ├── if.115.wat │ ├── if.116.wat │ ├── if.12.wasm │ ├── if.13.wasm │ ├── if.14.wasm │ ├── if.15.wasm │ ├── if.16.wasm │ ├── if.17.wasm │ ├── if.18.wasm │ ├── if.19.wasm │ ├── if.2.wat │ ├── if.20.wasm │ ├── if.21.wasm │ ├── if.22.wasm │ ├── if.23.wasm │ ├── if.24.wasm │ ├── if.25.wasm │ ├── if.26.wasm │ ├── if.27.wasm │ ├── if.28.wasm │ ├── if.29.wasm │ ├── if.3.wat │ ├── if.30.wasm │ ├── if.31.wasm │ ├── if.32.wasm │ ├── if.33.wasm │ ├── if.34.wasm │ ├── if.35.wasm │ ├── if.36.wasm │ ├── if.37.wasm │ ├── if.38.wasm │ ├── if.39.wasm │ ├── if.4.wat │ ├── if.40.wasm │ ├── if.41.wasm │ ├── if.42.wasm │ ├── if.43.wasm │ ├── if.44.wasm │ ├── if.45.wasm │ ├── if.46.wasm │ ├── if.47.wasm │ ├── if.48.wasm │ ├── if.49.wasm │ ├── if.5.wat │ ├── if.50.wasm │ ├── if.51.wasm │ ├── if.52.wasm │ ├── if.53.wasm │ ├── if.54.wasm │ ├── if.55.wasm │ ├── if.56.wasm │ ├── if.57.wasm │ ├── if.58.wasm │ ├── if.59.wasm │ ├── if.6.wat │ ├── if.60.wasm │ ├── if.61.wasm │ ├── if.62.wasm │ ├── if.63.wasm │ ├── if.64.wasm │ ├── if.65.wasm │ ├── if.66.wasm │ ├── if.67.wasm │ ├── if.68.wasm │ ├── if.69.wasm │ ├── if.7.wat │ ├── if.70.wasm │ ├── if.71.wasm │ ├── if.72.wasm │ ├── if.73.wasm │ ├── if.74.wasm │ ├── if.75.wasm │ ├── if.76.wasm │ ├── if.77.wasm │ ├── if.78.wasm │ ├── if.79.wasm │ ├── if.8.wat │ ├── if.80.wasm │ ├── if.81.wasm │ ├── if.82.wasm │ ├── if.83.wasm │ ├── if.84.wasm │ ├── if.85.wasm │ ├── if.86.wasm │ ├── if.87.wasm │ ├── if.88.wasm │ ├── if.89.wasm │ ├── if.9.wat │ ├── if.90.wasm │ ├── if.91.wasm │ ├── if.92.wasm │ ├── if.93.wasm │ ├── if.94.wasm │ ├── if.95.wasm │ ├── if.96.wasm │ ├── if.97.wasm │ ├── if.98.wasm │ ├── if.99.wasm │ ├── if.json │ ├── int_exprs.0.wasm │ ├── int_exprs.1.wasm │ ├── int_exprs.10.wasm │ ├── int_exprs.11.wasm │ ├── int_exprs.12.wasm │ ├── int_exprs.13.wasm │ ├── int_exprs.14.wasm │ ├── int_exprs.15.wasm │ ├── int_exprs.16.wasm │ ├── int_exprs.17.wasm │ ├── int_exprs.18.wasm │ ├── int_exprs.2.wasm │ ├── int_exprs.3.wasm │ ├── int_exprs.4.wasm │ ├── int_exprs.5.wasm │ ├── int_exprs.6.wasm │ ├── int_exprs.7.wasm │ ├── int_exprs.8.wasm │ ├── int_exprs.9.wasm │ ├── int_exprs.json │ ├── int_literals.0.wasm │ ├── int_literals.1.wat │ ├── int_literals.10.wat │ ├── int_literals.11.wat │ ├── int_literals.12.wat │ ├── int_literals.13.wat │ ├── int_literals.14.wat │ ├── int_literals.15.wat │ ├── int_literals.16.wat │ ├── int_literals.17.wat │ ├── int_literals.18.wat │ ├── int_literals.19.wat │ ├── int_literals.2.wat │ ├── int_literals.20.wat │ ├── int_literals.3.wat │ ├── int_literals.4.wat │ ├── int_literals.5.wat │ ├── int_literals.6.wat │ ├── int_literals.7.wat │ ├── int_literals.8.wat │ ├── int_literals.9.wat │ ├── int_literals.json │ ├── labels.0.wasm │ ├── labels.1.wasm │ ├── labels.2.wasm │ ├── labels.3.wasm │ ├── labels.json │ ├── left-to-right.0.wasm │ ├── left-to-right.json │ ├── load.0.wasm │ ├── load.1.wat │ ├── load.10.wat │ ├── load.11.wat │ ├── load.12.wat │ ├── load.13.wat │ ├── load.14.wasm │ ├── load.15.wasm │ ├── load.16.wasm │ ├── load.17.wasm │ ├── load.18.wasm │ ├── load.19.wasm │ ├── load.2.wat │ ├── load.20.wasm │ ├── load.21.wasm │ ├── load.22.wasm │ ├── load.23.wasm │ ├── load.24.wasm │ ├── load.25.wasm │ ├── load.26.wasm │ ├── load.27.wasm │ ├── load.28.wasm │ ├── load.29.wasm │ ├── load.3.wat │ ├── load.30.wasm │ ├── load.31.wasm │ ├── load.32.wasm │ ├── load.33.wasm │ ├── load.34.wasm │ ├── load.35.wasm │ ├── load.36.wasm │ ├── load.37.wasm │ ├── load.38.wasm │ ├── load.39.wasm │ ├── load.4.wat │ ├── load.40.wasm │ ├── load.41.wasm │ ├── load.42.wasm │ ├── load.43.wasm │ ├── load.44.wasm │ ├── load.45.wasm │ ├── load.46.wasm │ ├── load.47.wasm │ ├── load.48.wasm │ ├── load.49.wasm │ ├── load.5.wat │ ├── load.50.wasm │ ├── load.51.wasm │ ├── load.52.wasm │ ├── load.53.wasm │ ├── load.54.wasm │ ├── load.55.wasm │ ├── load.56.wasm │ ├── load.57.wasm │ ├── load.58.wasm │ ├── load.59.wasm │ ├── load.6.wat │ ├── load.7.wat │ ├── load.8.wat │ ├── load.9.wat │ ├── load.json │ ├── local_get.0.wasm │ ├── local_get.1.wasm │ ├── local_get.10.wasm │ ├── local_get.11.wasm │ ├── local_get.12.wasm │ ├── local_get.13.wasm │ ├── local_get.14.wasm │ ├── local_get.15.wasm │ ├── local_get.16.wasm │ ├── local_get.2.wasm │ ├── local_get.3.wasm │ ├── local_get.4.wasm │ ├── local_get.5.wasm │ ├── local_get.6.wasm │ ├── local_get.7.wasm │ ├── local_get.8.wasm │ ├── local_get.9.wasm │ ├── local_get.json │ ├── local_set.0.wasm │ ├── local_set.1.wasm │ ├── local_set.10.wasm │ ├── local_set.11.wasm │ ├── local_set.12.wasm │ ├── local_set.13.wasm │ ├── local_set.14.wasm │ ├── local_set.15.wasm │ ├── local_set.16.wasm │ ├── local_set.17.wasm │ ├── local_set.18.wasm │ ├── local_set.19.wasm │ ├── local_set.2.wasm │ ├── local_set.20.wasm │ ├── local_set.21.wasm │ ├── local_set.22.wasm │ ├── local_set.23.wasm │ ├── local_set.24.wasm │ ├── local_set.25.wasm │ ├── local_set.26.wasm │ ├── local_set.27.wasm │ ├── local_set.28.wasm │ ├── local_set.29.wasm │ ├── local_set.3.wasm │ ├── local_set.30.wasm │ ├── local_set.31.wasm │ ├── local_set.32.wasm │ ├── local_set.33.wasm │ ├── local_set.4.wasm │ ├── local_set.5.wasm │ ├── local_set.6.wasm │ ├── local_set.7.wasm │ ├── local_set.8.wasm │ ├── local_set.9.wasm │ ├── local_set.json │ ├── local_tee.0.wasm │ ├── local_tee.1.wasm │ ├── local_tee.10.wasm │ ├── local_tee.11.wasm │ ├── local_tee.12.wasm │ ├── local_tee.13.wasm │ ├── local_tee.14.wasm │ ├── local_tee.15.wasm │ ├── local_tee.16.wasm │ ├── local_tee.17.wasm │ ├── local_tee.18.wasm │ ├── local_tee.19.wasm │ ├── local_tee.2.wasm │ ├── local_tee.20.wasm │ ├── local_tee.21.wasm │ ├── local_tee.22.wasm │ ├── local_tee.23.wasm │ ├── local_tee.24.wasm │ ├── local_tee.25.wasm │ ├── local_tee.26.wasm │ ├── local_tee.27.wasm │ ├── local_tee.28.wasm │ ├── local_tee.29.wasm │ ├── local_tee.3.wasm │ ├── local_tee.30.wasm │ ├── local_tee.31.wasm │ ├── local_tee.32.wasm │ ├── local_tee.33.wasm │ ├── local_tee.34.wasm │ ├── local_tee.35.wasm │ ├── local_tee.36.wasm │ ├── local_tee.37.wasm │ ├── local_tee.38.wasm │ ├── local_tee.39.wasm │ ├── local_tee.4.wasm │ ├── local_tee.40.wasm │ ├── local_tee.41.wasm │ ├── local_tee.5.wasm │ ├── local_tee.6.wasm │ ├── local_tee.7.wasm │ ├── local_tee.8.wasm │ ├── local_tee.9.wasm │ ├── local_tee.json │ ├── loop.0.wasm │ ├── loop.1.wat │ ├── loop.10.wat │ ├── loop.11.wat │ ├── loop.12.wasm │ ├── loop.13.wasm │ ├── loop.14.wasm │ ├── loop.15.wasm │ ├── loop.16.wasm │ ├── loop.17.wasm │ ├── loop.18.wasm │ ├── loop.19.wasm │ ├── loop.2.wat │ ├── loop.20.wasm │ ├── loop.21.wasm │ ├── loop.22.wasm │ ├── loop.23.wasm │ ├── loop.24.wasm │ ├── loop.25.wasm │ ├── loop.26.wasm │ ├── loop.27.wasm │ ├── loop.28.wasm │ ├── loop.29.wasm │ ├── loop.3.wat │ ├── loop.30.wasm │ ├── loop.31.wasm │ ├── loop.32.wasm │ ├── loop.33.wasm │ ├── loop.34.wasm │ ├── loop.35.wasm │ ├── loop.36.wasm │ ├── loop.37.wasm │ ├── loop.38.wasm │ ├── loop.39.wat │ ├── loop.4.wat │ ├── loop.40.wat │ ├── loop.41.wat │ ├── loop.42.wat │ ├── loop.5.wat │ ├── loop.6.wat │ ├── loop.7.wat │ ├── loop.8.wat │ ├── loop.9.wat │ ├── loop.json │ ├── memory.0.wasm │ ├── memory.1.wasm │ ├── memory.10.wasm │ ├── memory.11.wasm │ ├── memory.12.wasm │ ├── memory.13.wasm │ ├── memory.14.wasm │ ├── memory.15.wasm │ ├── memory.16.wasm │ ├── memory.17.wasm │ ├── memory.18.wasm │ ├── memory.19.wasm │ ├── memory.2.wasm │ ├── memory.20.wasm │ ├── memory.21.wasm │ ├── memory.22.wasm │ ├── memory.23.wasm │ ├── memory.24.wasm │ ├── memory.25.wasm │ ├── memory.26.wasm │ ├── memory.27.wat │ ├── memory.28.wat │ ├── memory.29.wat │ ├── memory.3.wasm │ ├── memory.30.wasm │ ├── memory.31.wat │ ├── memory.32.wat │ ├── memory.33.wat │ ├── memory.34.wasm │ ├── memory.4.wasm │ ├── memory.5.wasm │ ├── memory.6.wasm │ ├── memory.7.wasm │ ├── memory.8.wasm │ ├── memory.9.wasm │ ├── memory.json │ ├── memory_copy.0.wasm │ ├── memory_copy.1.wasm │ ├── memory_copy.10.wasm │ ├── memory_copy.11.wasm │ ├── memory_copy.12.wasm │ ├── memory_copy.13.wasm │ ├── memory_copy.14.wasm │ ├── memory_copy.15.wasm │ ├── memory_copy.16.wasm │ ├── memory_copy.17.wasm │ ├── memory_copy.18.wasm │ ├── memory_copy.19.wasm │ ├── memory_copy.2.wasm │ ├── memory_copy.20.wasm │ ├── memory_copy.21.wasm │ ├── memory_copy.22.wasm │ ├── memory_copy.23.wasm │ ├── memory_copy.24.wasm │ ├── memory_copy.25.wasm │ ├── memory_copy.26.wasm │ ├── memory_copy.27.wasm │ ├── memory_copy.28.wasm │ ├── memory_copy.29.wasm │ ├── memory_copy.3.wasm │ ├── memory_copy.30.wasm │ ├── memory_copy.31.wasm │ ├── memory_copy.32.wasm │ ├── memory_copy.33.wasm │ ├── memory_copy.34.wasm │ ├── memory_copy.35.wasm │ ├── memory_copy.36.wasm │ ├── memory_copy.37.wasm │ ├── memory_copy.38.wasm │ ├── memory_copy.39.wasm │ ├── memory_copy.4.wasm │ ├── memory_copy.40.wasm │ ├── memory_copy.41.wasm │ ├── memory_copy.42.wasm │ ├── memory_copy.43.wasm │ ├── memory_copy.44.wasm │ ├── memory_copy.45.wasm │ ├── memory_copy.46.wasm │ ├── memory_copy.47.wasm │ ├── memory_copy.48.wasm │ ├── memory_copy.49.wasm │ ├── memory_copy.5.wasm │ ├── memory_copy.50.wasm │ ├── memory_copy.51.wasm │ ├── memory_copy.52.wasm │ ├── memory_copy.53.wasm │ ├── memory_copy.54.wasm │ ├── memory_copy.55.wasm │ ├── memory_copy.56.wasm │ ├── memory_copy.57.wasm │ ├── memory_copy.58.wasm │ ├── memory_copy.59.wasm │ ├── memory_copy.6.wasm │ ├── memory_copy.60.wasm │ ├── memory_copy.61.wasm │ ├── memory_copy.62.wasm │ ├── memory_copy.63.wasm │ ├── memory_copy.64.wasm │ ├── memory_copy.65.wasm │ ├── memory_copy.66.wasm │ ├── memory_copy.67.wasm │ ├── memory_copy.68.wasm │ ├── memory_copy.69.wasm │ ├── memory_copy.7.wasm │ ├── memory_copy.70.wasm │ ├── memory_copy.71.wasm │ ├── memory_copy.72.wasm │ ├── memory_copy.73.wasm │ ├── memory_copy.74.wasm │ ├── memory_copy.75.wasm │ ├── memory_copy.76.wasm │ ├── memory_copy.77.wasm │ ├── memory_copy.78.wasm │ ├── memory_copy.79.wasm │ ├── memory_copy.8.wasm │ ├── memory_copy.80.wasm │ ├── memory_copy.81.wasm │ ├── memory_copy.82.wasm │ ├── memory_copy.83.wasm │ ├── memory_copy.84.wasm │ ├── memory_copy.85.wasm │ ├── memory_copy.86.wasm │ ├── memory_copy.87.wasm │ ├── memory_copy.88.wasm │ ├── memory_copy.89.wasm │ ├── memory_copy.9.wasm │ ├── memory_copy.90.wasm │ ├── memory_copy.91.wasm │ ├── memory_copy.92.wasm │ ├── memory_copy.93.wasm │ ├── memory_copy.94.wasm │ ├── memory_copy.95.wasm │ ├── memory_copy.96.wasm │ ├── memory_copy.json │ ├── memory_fill.0.wasm │ ├── memory_fill.1.wasm │ ├── memory_fill.10.wasm │ ├── memory_fill.11.wasm │ ├── memory_fill.12.wasm │ ├── memory_fill.13.wasm │ ├── memory_fill.14.wasm │ ├── memory_fill.15.wasm │ ├── memory_fill.16.wasm │ ├── memory_fill.17.wasm │ ├── memory_fill.18.wasm │ ├── memory_fill.19.wasm │ ├── memory_fill.2.wasm │ ├── memory_fill.20.wasm │ ├── memory_fill.21.wasm │ ├── memory_fill.22.wasm │ ├── memory_fill.23.wasm │ ├── memory_fill.24.wasm │ ├── memory_fill.25.wasm │ ├── memory_fill.26.wasm │ ├── memory_fill.27.wasm │ ├── memory_fill.28.wasm │ ├── memory_fill.29.wasm │ ├── memory_fill.3.wasm │ ├── memory_fill.30.wasm │ ├── memory_fill.31.wasm │ ├── memory_fill.32.wasm │ ├── memory_fill.33.wasm │ ├── memory_fill.34.wasm │ ├── memory_fill.35.wasm │ ├── memory_fill.36.wasm │ ├── memory_fill.37.wasm │ ├── memory_fill.38.wasm │ ├── memory_fill.39.wasm │ ├── memory_fill.4.wasm │ ├── memory_fill.40.wasm │ ├── memory_fill.41.wasm │ ├── memory_fill.42.wasm │ ├── memory_fill.43.wasm │ ├── memory_fill.44.wasm │ ├── memory_fill.45.wasm │ ├── memory_fill.46.wasm │ ├── memory_fill.47.wasm │ ├── memory_fill.48.wasm │ ├── memory_fill.49.wasm │ ├── memory_fill.5.wasm │ ├── memory_fill.50.wasm │ ├── memory_fill.51.wasm │ ├── memory_fill.52.wasm │ ├── memory_fill.53.wasm │ ├── memory_fill.54.wasm │ ├── memory_fill.55.wasm │ ├── memory_fill.56.wasm │ ├── memory_fill.57.wasm │ ├── memory_fill.58.wasm │ ├── memory_fill.59.wasm │ ├── memory_fill.6.wasm │ ├── memory_fill.60.wasm │ ├── memory_fill.61.wasm │ ├── memory_fill.62.wasm │ ├── memory_fill.63.wasm │ ├── memory_fill.64.wasm │ ├── memory_fill.65.wasm │ ├── memory_fill.66.wasm │ ├── memory_fill.67.wasm │ ├── memory_fill.68.wasm │ ├── memory_fill.69.wasm │ ├── memory_fill.7.wasm │ ├── memory_fill.70.wasm │ ├── memory_fill.71.wasm │ ├── memory_fill.72.wasm │ ├── memory_fill.73.wasm │ ├── memory_fill.74.wasm │ ├── memory_fill.8.wasm │ ├── memory_fill.9.wasm │ ├── memory_fill.json │ ├── memory_grow.0.wasm │ ├── memory_grow.1.wasm │ ├── memory_grow.10.wasm │ ├── memory_grow.11.wasm │ ├── memory_grow.12.wasm │ ├── memory_grow.2.wasm │ ├── memory_grow.3.wasm │ ├── memory_grow.4.wasm │ ├── memory_grow.5.wasm │ ├── memory_grow.6.wasm │ ├── memory_grow.7.wasm │ ├── memory_grow.8.wasm │ ├── memory_grow.9.wasm │ ├── memory_grow.json │ ├── memory_init.0.wasm │ ├── memory_init.1.wasm │ ├── memory_init.10.wasm │ ├── memory_init.11.wasm │ ├── memory_init.12.wasm │ ├── memory_init.13.wasm │ ├── memory_init.14.wasm │ ├── memory_init.15.wasm │ ├── memory_init.16.wasm │ ├── memory_init.17.wasm │ ├── memory_init.18.wasm │ ├── memory_init.19.wasm │ ├── memory_init.2.wasm │ ├── memory_init.20.wasm │ ├── memory_init.21.wasm │ ├── memory_init.22.wasm │ ├── memory_init.23.wasm │ ├── memory_init.24.wasm │ ├── memory_init.25.wasm │ ├── memory_init.26.wasm │ ├── memory_init.27.wasm │ ├── memory_init.28.wasm │ ├── memory_init.29.wasm │ ├── memory_init.3.wasm │ ├── memory_init.30.wasm │ ├── memory_init.31.wasm │ ├── memory_init.32.wasm │ ├── memory_init.33.wasm │ ├── memory_init.34.wasm │ ├── memory_init.35.wasm │ ├── memory_init.36.wasm │ ├── memory_init.37.wasm │ ├── memory_init.38.wasm │ ├── memory_init.39.wasm │ ├── memory_init.4.wasm │ ├── memory_init.40.wasm │ ├── memory_init.41.wasm │ ├── memory_init.42.wasm │ ├── memory_init.43.wasm │ ├── memory_init.44.wasm │ ├── memory_init.45.wasm │ ├── memory_init.46.wasm │ ├── memory_init.47.wasm │ ├── memory_init.48.wasm │ ├── memory_init.49.wasm │ ├── memory_init.5.wasm │ ├── memory_init.50.wasm │ ├── memory_init.51.wasm │ ├── memory_init.52.wasm │ ├── memory_init.53.wasm │ ├── memory_init.54.wasm │ ├── memory_init.55.wasm │ ├── memory_init.56.wasm │ ├── memory_init.57.wasm │ ├── memory_init.58.wasm │ ├── memory_init.59.wasm │ ├── memory_init.6.wasm │ ├── memory_init.60.wasm │ ├── memory_init.61.wasm │ ├── memory_init.62.wasm │ ├── memory_init.63.wasm │ ├── memory_init.64.wasm │ ├── memory_init.65.wasm │ ├── memory_init.66.wasm │ ├── memory_init.67.wasm │ ├── memory_init.68.wasm │ ├── memory_init.69.wasm │ ├── memory_init.7.wasm │ ├── memory_init.70.wasm │ ├── memory_init.71.wasm │ ├── memory_init.72.wasm │ ├── memory_init.73.wasm │ ├── memory_init.74.wasm │ ├── memory_init.75.wasm │ ├── memory_init.76.wasm │ ├── memory_init.77.wasm │ ├── memory_init.78.wasm │ ├── memory_init.79.wasm │ ├── memory_init.8.wasm │ ├── memory_init.80.wasm │ ├── memory_init.81.wasm │ ├── memory_init.82.wasm │ ├── memory_init.83.wasm │ ├── memory_init.84.wasm │ ├── memory_init.85.wasm │ ├── memory_init.86.wasm │ ├── memory_init.87.wasm │ ├── memory_init.88.wasm │ ├── memory_init.89.wasm │ ├── memory_init.9.wasm │ ├── memory_init.90.wasm │ ├── memory_init.json │ ├── memory_redundancy.0.wasm │ ├── memory_redundancy.json │ ├── memory_size.0.wasm │ ├── memory_size.1.wasm │ ├── memory_size.2.wasm │ ├── memory_size.3.wasm │ ├── memory_size.4.wasm │ ├── memory_size.5.wasm │ ├── memory_size.json │ ├── memory_trap.0.wasm │ ├── memory_trap.1.wasm │ ├── memory_trap.json │ ├── nop.0.wasm │ ├── nop.1.wasm │ ├── nop.2.wasm │ ├── nop.3.wasm │ ├── nop.4.wasm │ ├── nop.json │ ├── return.0.wasm │ ├── return.1.wasm │ ├── return.10.wasm │ ├── return.11.wasm │ ├── return.12.wasm │ ├── return.13.wasm │ ├── return.14.wasm │ ├── return.15.wasm │ ├── return.16.wasm │ ├── return.17.wasm │ ├── return.18.wasm │ ├── return.19.wasm │ ├── return.2.wasm │ ├── return.20.wasm │ ├── return.3.wasm │ ├── return.4.wasm │ ├── return.5.wasm │ ├── return.6.wasm │ ├── return.7.wasm │ ├── return.8.wasm │ ├── return.9.wasm │ ├── return.json │ ├── select.0.wasm │ ├── select.1.wasm │ ├── select.10.wasm │ ├── select.11.wasm │ ├── select.12.wasm │ ├── select.13.wasm │ ├── select.14.wasm │ ├── select.15.wasm │ ├── select.16.wasm │ ├── select.17.wasm │ ├── select.18.wasm │ ├── select.19.wasm │ ├── select.2.wasm │ ├── select.20.wasm │ ├── select.21.wasm │ ├── select.22.wasm │ ├── select.23.wasm │ ├── select.24.wasm │ ├── select.25.wasm │ ├── select.26.wasm │ ├── select.3.wasm │ ├── select.4.wasm │ ├── select.5.wasm │ ├── select.6.wasm │ ├── select.7.wasm │ ├── select.8.wasm │ ├── select.9.wasm │ ├── select.json │ ├── shared.0.wasm │ ├── shared.1.wasm │ ├── shared.2.wasm │ ├── shared.3.wasm │ ├── shared.4.wasm │ ├── shared.5.wasm │ ├── shared.6.wasm │ ├── shared.7.wasm │ ├── shared.8.wasm │ ├── shared.json │ ├── stack.0.wasm │ ├── stack.1.wasm │ ├── stack.json │ ├── start.0.wasm │ ├── start.1.wasm │ ├── start.2.wasm │ ├── start.3.wasm │ ├── start.4.wasm │ ├── start.5.wasm │ ├── start.6.wasm │ ├── start.7.wasm │ ├── start.8.wasm │ ├── start.9.wat │ ├── start.json │ ├── store.0.wasm │ ├── store.1.wat │ ├── store.10.wasm │ ├── store.11.wasm │ ├── store.12.wasm │ ├── store.13.wasm │ ├── store.14.wasm │ ├── store.15.wasm │ ├── store.16.wasm │ ├── store.17.wasm │ ├── store.18.wasm │ ├── store.19.wasm │ ├── store.2.wat │ ├── store.20.wasm │ ├── store.21.wasm │ ├── store.22.wasm │ ├── store.23.wasm │ ├── store.24.wasm │ ├── store.25.wasm │ ├── store.26.wasm │ ├── store.27.wasm │ ├── store.28.wasm │ ├── store.29.wasm │ ├── store.3.wat │ ├── store.30.wasm │ ├── store.31.wasm │ ├── store.32.wasm │ ├── store.33.wasm │ ├── store.34.wasm │ ├── store.35.wasm │ ├── store.36.wasm │ ├── store.37.wasm │ ├── store.38.wasm │ ├── store.39.wasm │ ├── store.4.wat │ ├── store.40.wasm │ ├── store.41.wasm │ ├── store.42.wasm │ ├── store.43.wasm │ ├── store.44.wasm │ ├── store.45.wasm │ ├── store.46.wasm │ ├── store.47.wasm │ ├── store.48.wasm │ ├── store.49.wasm │ ├── store.5.wat │ ├── store.50.wasm │ ├── store.51.wasm │ ├── store.52.wasm │ ├── store.53.wasm │ ├── store.54.wasm │ ├── store.55.wasm │ ├── store.56.wasm │ ├── store.57.wasm │ ├── store.58.wasm │ ├── store.6.wat │ ├── store.7.wat │ ├── store.8.wasm │ ├── store.9.wasm │ ├── store.json │ ├── switch.0.wasm │ ├── switch.1.wasm │ ├── switch.json │ ├── traps.0.wasm │ ├── traps.1.wasm │ ├── traps.2.wasm │ ├── traps.3.wasm │ ├── traps.json │ ├── type.0.wasm │ ├── type.1.wat │ ├── type.2.wat │ ├── type.json │ ├── unreachable.0.wasm │ ├── unreachable.json │ ├── unreached-invalid.0.wasm │ ├── unreached-invalid.1.wasm │ ├── unreached-invalid.10.wasm │ ├── unreached-invalid.100.wasm │ ├── unreached-invalid.101.wasm │ ├── unreached-invalid.102.wasm │ ├── unreached-invalid.103.wasm │ ├── unreached-invalid.104.wasm │ ├── unreached-invalid.105.wasm │ ├── unreached-invalid.106.wasm │ ├── unreached-invalid.107.wasm │ ├── unreached-invalid.108.wasm │ ├── unreached-invalid.109.wasm │ ├── unreached-invalid.11.wasm │ ├── unreached-invalid.110.wasm │ ├── unreached-invalid.111.wasm │ ├── unreached-invalid.112.wasm │ ├── unreached-invalid.113.wasm │ ├── unreached-invalid.114.wasm │ ├── unreached-invalid.115.wasm │ ├── unreached-invalid.116.wasm │ ├── unreached-invalid.12.wasm │ ├── unreached-invalid.13.wasm │ ├── unreached-invalid.14.wasm │ ├── unreached-invalid.15.wasm │ ├── unreached-invalid.16.wasm │ ├── unreached-invalid.17.wasm │ ├── unreached-invalid.18.wasm │ ├── unreached-invalid.19.wasm │ ├── unreached-invalid.2.wasm │ ├── unreached-invalid.20.wasm │ ├── unreached-invalid.21.wasm │ ├── unreached-invalid.22.wasm │ ├── unreached-invalid.23.wasm │ ├── unreached-invalid.24.wasm │ ├── unreached-invalid.25.wasm │ ├── unreached-invalid.26.wasm │ ├── unreached-invalid.27.wasm │ ├── unreached-invalid.28.wasm │ ├── unreached-invalid.29.wasm │ ├── unreached-invalid.3.wasm │ ├── unreached-invalid.30.wasm │ ├── unreached-invalid.31.wasm │ ├── unreached-invalid.32.wasm │ ├── unreached-invalid.33.wasm │ ├── unreached-invalid.34.wasm │ ├── unreached-invalid.35.wasm │ ├── unreached-invalid.36.wasm │ ├── unreached-invalid.37.wasm │ ├── unreached-invalid.38.wasm │ ├── unreached-invalid.39.wasm │ ├── unreached-invalid.4.wasm │ ├── unreached-invalid.40.wasm │ ├── unreached-invalid.41.wasm │ ├── unreached-invalid.42.wasm │ ├── unreached-invalid.43.wasm │ ├── unreached-invalid.44.wasm │ ├── unreached-invalid.45.wasm │ ├── unreached-invalid.46.wasm │ ├── unreached-invalid.47.wasm │ ├── unreached-invalid.48.wasm │ ├── unreached-invalid.49.wasm │ ├── unreached-invalid.5.wasm │ ├── unreached-invalid.50.wasm │ ├── unreached-invalid.51.wasm │ ├── unreached-invalid.52.wasm │ ├── unreached-invalid.53.wasm │ ├── unreached-invalid.54.wasm │ ├── unreached-invalid.55.wasm │ ├── unreached-invalid.56.wasm │ ├── unreached-invalid.57.wasm │ ├── unreached-invalid.58.wasm │ ├── unreached-invalid.59.wasm │ ├── unreached-invalid.6.wasm │ ├── unreached-invalid.60.wasm │ ├── unreached-invalid.61.wasm │ ├── unreached-invalid.62.wasm │ ├── unreached-invalid.63.wasm │ ├── unreached-invalid.64.wasm │ ├── unreached-invalid.65.wasm │ ├── unreached-invalid.66.wasm │ ├── unreached-invalid.67.wasm │ ├── unreached-invalid.68.wasm │ ├── unreached-invalid.69.wasm │ ├── unreached-invalid.7.wasm │ ├── unreached-invalid.70.wasm │ ├── unreached-invalid.71.wasm │ ├── unreached-invalid.72.wasm │ ├── unreached-invalid.73.wasm │ ├── unreached-invalid.74.wasm │ ├── unreached-invalid.75.wasm │ ├── unreached-invalid.76.wasm │ ├── unreached-invalid.77.wasm │ ├── unreached-invalid.78.wasm │ ├── unreached-invalid.79.wasm │ ├── unreached-invalid.8.wasm │ ├── unreached-invalid.80.wasm │ ├── unreached-invalid.81.wasm │ ├── unreached-invalid.82.wasm │ ├── unreached-invalid.83.wasm │ ├── unreached-invalid.84.wasm │ ├── unreached-invalid.85.wasm │ ├── unreached-invalid.86.wasm │ ├── unreached-invalid.87.wasm │ ├── unreached-invalid.88.wasm │ ├── unreached-invalid.89.wasm │ ├── unreached-invalid.9.wasm │ ├── unreached-invalid.90.wasm │ ├── unreached-invalid.91.wasm │ ├── unreached-invalid.92.wasm │ ├── unreached-invalid.93.wasm │ ├── unreached-invalid.94.wasm │ ├── unreached-invalid.95.wasm │ ├── unreached-invalid.96.wasm │ ├── unreached-invalid.97.wasm │ ├── unreached-invalid.98.wasm │ ├── unreached-invalid.99.wasm │ ├── unreached-invalid.json │ ├── unreached-valid.0.wasm │ ├── unreached-valid.1.wasm │ ├── unreached-valid.json │ ├── unwind.0.wasm │ └── unwind.json ├── global.wast ├── i32.wast ├── i64.wast ├── if.wast ├── int_exprs.wast ├── int_literals.wast ├── labels.wast ├── left-to-right.wast ├── load.wast ├── local_get.wast ├── local_set.wast ├── local_tee.wast ├── loop.wast ├── main.c ├── memory.wast ├── memory_copy.wast ├── memory_fill.wast ├── memory_grow.wast ├── memory_init.wast ├── memory_redundancy.wast ├── memory_size.wast ├── memory_trap.wast ├── nop.wast ├── return.wast ├── run.py ├── select.wast ├── shared.wast ├── stack.wast ├── start.wast ├── store.wast ├── switch.wast ├── test.h ├── test_conversions.0.ppc64le.out ├── test_float_exprs.89.hppa.out ├── test_float_exprs.89.i386.out ├── test_float_exprs.89.mips.out ├── test_float_exprs.89.mips64.out ├── test_float_exprs.89.mips64el.out ├── test_float_exprs.89.mipsel.out ├── test_float_literals.0.i386.out ├── test_float_memory.0.i386.out ├── test_float_memory.2.i386.out ├── test_float_misc.0.i386.out ├── traps.wast ├── type.wast ├── unreachable.wast ├── unreached-invalid.wast ├── unreached-valid.wast └── unwind.wast ├── w2c2.svg ├── w2c2 ├── CMakeLists.txt ├── Makefile ├── array.c ├── array.h ├── buffer.h ├── c.c ├── c.h ├── compat.c ├── compat.h ├── datasegment.h ├── debug.c ├── debug.h ├── elementsegment.h ├── export.c ├── export.h ├── file.c ├── file.h ├── function.h ├── functiontype.h ├── getopt_impl.h ├── global.h ├── import.h ├── instruction.c ├── instruction.h ├── labelstack.h ├── leb128.h ├── leb128_test.c ├── leb128_test.h ├── locals.h ├── main.c ├── memory.h ├── module.h ├── name.h ├── opcode.c ├── opcode.h ├── opcode_test.c ├── opcode_test.h ├── path.h ├── reader.c ├── reader.h ├── section.c ├── section.h ├── sha1.c ├── sha1.h ├── sha1_test.c ├── sha1_test.h ├── str.h ├── stringbuilder.c ├── stringbuilder.h ├── stringbuilder_test.c ├── stringbuilder_test.h ├── table.h ├── test.c ├── typestack.h ├── typestack_test.c ├── typestack_test.h ├── valuetype.c ├── valuetype.h └── w2c2_base.h └── wasi ├── CMakeLists.txt ├── Makefile ├── mac.c ├── mac.h ├── test.c ├── wasi.c ├── wasi.h ├── win32.c └── win32.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbolent/w2c2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbolent/w2c2/HEAD/README.md -------------------------------------------------------------------------------- /examples/clang/sys/.gitignore: -------------------------------------------------------------------------------- 1 | !*.o 2 | !*.a 3 | /bin/llvm 4 | -------------------------------------------------------------------------------- /examples/clang/sys/bin/addr2line: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/ar: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/c++filt: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/clang: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/clang++: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/objcopy: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/objdump: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/ranlib: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/size: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/strip: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/bin/wasm-ld: -------------------------------------------------------------------------------- 1 | driverdriver.py -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/include/wasm32-wasip1/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libcrypt.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libm.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libpthread.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libresolv.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/librt.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libutil.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/clang/sys/lib/wasm32-wasip1/libxnet.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /examples/ls/.gitignore: -------------------------------------------------------------------------------- 1 | ls.c 2 | ls.h 3 | ls 4 | 5 | -------------------------------------------------------------------------------- /tests/gen/align.0.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A, -------------------------------------------------------------------------------- /tests/gen/align.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A- -------------------------------------------------------------------------------- /tests/gen/align.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A5 -------------------------------------------------------------------------------- /tests/gen/align.100.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB< -------------------------------------------------------------------------------- /tests/gen/align.101.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB= -------------------------------------------------------------------------------- /tests/gen/align.102.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB> -------------------------------------------------------------------------------- /tests/gen/align.103.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB7 -------------------------------------------------------------------------------- /tests/gen/align.108.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A( -------------------------------------------------------------------------------- /tests/gen/align.109.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A(  -------------------------------------------------------------------------------- /tests/gen/align.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A) -------------------------------------------------------------------------------- /tests/gen/align.110.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A(! -------------------------------------------------------------------------------- /tests/gen/align.111.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A(? -------------------------------------------------------------------------------- /tests/gen/align.112.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A(@ -------------------------------------------------------------------------------- /tests/gen/align.113.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A(A -------------------------------------------------------------------------------- /tests/gen/align.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A* -------------------------------------------------------------------------------- /tests/gen/align.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A+ -------------------------------------------------------------------------------- /tests/gen/align.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA: -------------------------------------------------------------------------------- /tests/gen/align.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA; -------------------------------------------------------------------------------- /tests/gen/align.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA6 -------------------------------------------------------------------------------- /tests/gen/align.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB< -------------------------------------------------------------------------------- /tests/gen/align.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB= -------------------------------------------------------------------------------- /tests/gen/align.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB> -------------------------------------------------------------------------------- /tests/gen/align.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A. -------------------------------------------------------------------------------- /tests/gen/align.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB7 -------------------------------------------------------------------------------- /tests/gen/align.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A/ -------------------------------------------------------------------------------- /tests/gen/align.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A( -------------------------------------------------------------------------------- /tests/gen/align.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A0 -------------------------------------------------------------------------------- /tests/gen/align.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A1 -------------------------------------------------------------------------------- /tests/gen/align.69.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A, -------------------------------------------------------------------------------- /tests/gen/align.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A2 -------------------------------------------------------------------------------- /tests/gen/align.70.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A- -------------------------------------------------------------------------------- /tests/gen/align.71.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A. -------------------------------------------------------------------------------- /tests/gen/align.72.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A/ -------------------------------------------------------------------------------- /tests/gen/align.73.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A( -------------------------------------------------------------------------------- /tests/gen/align.74.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A0 -------------------------------------------------------------------------------- /tests/gen/align.75.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A1 -------------------------------------------------------------------------------- /tests/gen/align.76.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A2 -------------------------------------------------------------------------------- /tests/gen/align.77.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A3 -------------------------------------------------------------------------------- /tests/gen/align.78.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A4 -------------------------------------------------------------------------------- /tests/gen/align.79.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A5 -------------------------------------------------------------------------------- /tests/gen/align.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A3 -------------------------------------------------------------------------------- /tests/gen/align.80.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A) -------------------------------------------------------------------------------- /tests/gen/align.81.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A* -------------------------------------------------------------------------------- /tests/gen/align.82.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A+ -------------------------------------------------------------------------------- /tests/gen/align.83.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A, -------------------------------------------------------------------------------- /tests/gen/align.84.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A- -------------------------------------------------------------------------------- /tests/gen/align.85.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A. -------------------------------------------------------------------------------- /tests/gen/align.86.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A/ -------------------------------------------------------------------------------- /tests/gen/align.87.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A( -------------------------------------------------------------------------------- /tests/gen/align.88.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A0 -------------------------------------------------------------------------------- /tests/gen/align.89.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A1 -------------------------------------------------------------------------------- /tests/gen/align.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A4 -------------------------------------------------------------------------------- /tests/gen/align.90.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A2 -------------------------------------------------------------------------------- /tests/gen/align.91.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A3 -------------------------------------------------------------------------------- /tests/gen/align.92.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A4 -------------------------------------------------------------------------------- /tests/gen/align.93.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A5 -------------------------------------------------------------------------------- /tests/gen/align.94.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A) -------------------------------------------------------------------------------- /tests/gen/align.95.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A* -------------------------------------------------------------------------------- /tests/gen/align.96.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A+ -------------------------------------------------------------------------------- /tests/gen/binary.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.10.wasm: -------------------------------------------------------------------------------- 1 | msa -------------------------------------------------------------------------------- /tests/gen/binary.100.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A A -------------------------------------------------------------------------------- /tests/gen/binary.102.wasm: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /tests/gen/binary.103.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/binary.104.wasm: -------------------------------------------------------------------------------- 1 | asm A aA b -------------------------------------------------------------------------------- /tests/gen/binary.105.wasm: -------------------------------------------------------------------------------- 1 | asm A abcdef -------------------------------------------------------------------------------- /tests/gen/binary.106.wasm: -------------------------------------------------------------------------------- 1 | asm A abcdef -------------------------------------------------------------------------------- /tests/gen/binary.107.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @A@A -------------------------------------------------------------------------------- /tests/gen/binary.109.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/binary.11.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.113.wasm: -------------------------------------------------------------------------------- 1 | asm   -------------------------------------------------------------------------------- /tests/gen/binary.12.wasm: -------------------------------------------------------------------------------- 1 | wasm -------------------------------------------------------------------------------- /tests/gen/binary.122.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.123.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.124.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.125.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.126.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.127.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.128.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.129.wasm: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /tests/gen/binary.13.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.130.wasm: -------------------------------------------------------------------------------- 1 | asm   -------------------------------------------------------------------------------- /tests/gen/binary.131.wasm: -------------------------------------------------------------------------------- 1 | asm 2 |   -------------------------------------------------------------------------------- /tests/gen/binary.132.wasm: -------------------------------------------------------------------------------- 1 | asm  2 |  -------------------------------------------------------------------------------- /tests/gen/binary.17.wasm: -------------------------------------------------------------------------------- 1 | msa -------------------------------------------------------------------------------- /tests/gen/binary.18.wasm: -------------------------------------------------------------------------------- 1 | ams -------------------------------------------------------------------------------- /tests/gen/binary.19.wasm: -------------------------------------------------------------------------------- 1 | sma -------------------------------------------------------------------------------- /tests/gen/binary.2.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.20.wasm: -------------------------------------------------------------------------------- 1 | ASM -------------------------------------------------------------------------------- /tests/gen/binary.22.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.23.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.24.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.25.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.26.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.27.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.28.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.29.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.3.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.30.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.31.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.32.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.33.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.38.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/binary.39.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  -------------------------------------------------------------------------------- /tests/gen/binary.4.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gen/binary.40.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |  -------------------------------------------------------------------------------- /tests/gen/binary.41.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@ -------------------------------------------------------------------------------- /tests/gen/binary.46.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ? -------------------------------------------------------------------------------- /tests/gen/binary.5.wasm: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/gen/binary.55.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | ~} -------------------------------------------------------------------------------- /tests/gen/binary.56.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /tests/gen/binary.57.wasm: -------------------------------------------------------------------------------- 1 | asm 2 |  -------------------------------------------------------------------------------- /tests/gen/binary.58.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/binary.59.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /tests/gen/binary.6.wasm: -------------------------------------------------------------------------------- 1 | as -------------------------------------------------------------------------------- /tests/gen/binary.60.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.61.wasm: -------------------------------------------------------------------------------- 1 | asm 2 |  -------------------------------------------------------------------------------- /tests/gen/binary.62.wasm: -------------------------------------------------------------------------------- 1 | asm   -------------------------------------------------------------------------------- /tests/gen/binary.63.wasm: -------------------------------------------------------------------------------- 1 | asm   -------------------------------------------------------------------------------- /tests/gen/binary.64.wasm: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /tests/gen/binary.69.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.7.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.70.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /tests/gen/binary.71.wasm: -------------------------------------------------------------------------------- 1 | asm`` -------------------------------------------------------------------------------- /tests/gen/binary.72.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /tests/gen/binary.73.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.74.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.75.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.76.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.79.wasm: -------------------------------------------------------------------------------- 1 | asm`spectest print_i32 -------------------------------------------------------------------------------- /tests/gen/binary.8.wasm: -------------------------------------------------------------------------------- 1 | msa -------------------------------------------------------------------------------- /tests/gen/binary.81.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.82.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.83.wasm: -------------------------------------------------------------------------------- 1 | asmp -------------------------------------------------------------------------------- /tests/gen/binary.84.wasm: -------------------------------------------------------------------------------- 1 | asmp -------------------------------------------------------------------------------- /tests/gen/binary.86.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.87.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.88.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.89.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.9.wasm: -------------------------------------------------------------------------------- 1 | msa -------------------------------------------------------------------------------- /tests/gen/binary.92.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/binary.93.wasm: -------------------------------------------------------------------------------- 1 | asmA -------------------------------------------------------------------------------- /tests/gen/binary.95.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /tests/gen/binary.96.wasm: -------------------------------------------------------------------------------- 1 | asm`f1 2 |   -------------------------------------------------------------------------------- /tests/gen/binary.98.wasm: -------------------------------------------------------------------------------- 1 | asm`p  2 |  -------------------------------------------------------------------------------- /tests/gen/binary.99.wasm: -------------------------------------------------------------------------------- 1 | asm`p A  -------------------------------------------------------------------------------- /tests/gen/block.107.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A AA -------------------------------------------------------------------------------- /tests/gen/block.108.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  -------------------------------------------------------------------------------- /tests/gen/block.109.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ~~B  -------------------------------------------------------------------------------- /tests/gen/block.113.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @  A -------------------------------------------------------------------------------- /tests/gen/block.114.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~@  B -------------------------------------------------------------------------------- /tests/gen/block.117.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @  AA -------------------------------------------------------------------------------- /tests/gen/block.118.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   A -------------------------------------------------------------------------------- /tests/gen/block.119.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~~  B -------------------------------------------------------------------------------- /tests/gen/block.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @A -------------------------------------------------------------------------------- /tests/gen/block.123.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B  A -------------------------------------------------------------------------------- /tests/gen/block.126.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~~A  B -------------------------------------------------------------------------------- /tests/gen/block.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @ -------------------------------------------------------------------------------- /tests/gen/block.136.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | @ h -------------------------------------------------------------------------------- /tests/gen/block.137.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | 3 | @ z -------------------------------------------------------------------------------- /tests/gen/block.14.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | @ -------------------------------------------------------------------------------- /tests/gen/block.140.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | @ j -------------------------------------------------------------------------------- /tests/gen/block.141.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ h -------------------------------------------------------------------------------- /tests/gen/block.142.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  @ z -------------------------------------------------------------------------------- /tests/gen/block.145.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ j -------------------------------------------------------------------------------- /tests/gen/block.146.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @B z -------------------------------------------------------------------------------- /tests/gen/block.149.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | @A h -------------------------------------------------------------------------------- /tests/gen/block.15.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | @ -------------------------------------------------------------------------------- /tests/gen/block.152.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  3 | @A h -------------------------------------------------------------------------------- /tests/gen/block.153.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  3 | @B z -------------------------------------------------------------------------------- /tests/gen/block.155.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | @A h -------------------------------------------------------------------------------- /tests/gen/block.156.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | @B z -------------------------------------------------------------------------------- /tests/gen/block.158.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @B A 3 | j -------------------------------------------------------------------------------- /tests/gen/block.159.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.16.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | @ -------------------------------------------------------------------------------- /tests/gen/block.160.wasm: -------------------------------------------------------------------------------- 1 | asm ``| 2 |  -------------------------------------------------------------------------------- /tests/gen/block.161.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  C -------------------------------------------------------------------------------- /tests/gen/block.162.wasm: -------------------------------------------------------------------------------- 1 | asm ``} 2 |  C -------------------------------------------------------------------------------- /tests/gen/block.163.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  @ -------------------------------------------------------------------------------- /tests/gen/block.165.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 | @C -------------------------------------------------------------------------------- /tests/gen/block.169.wat: -------------------------------------------------------------------------------- 1 | (func block end $l) -------------------------------------------------------------------------------- /tests/gen/block.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @A -------------------------------------------------------------------------------- /tests/gen/block.170.wat: -------------------------------------------------------------------------------- 1 | (func block $a end $l) -------------------------------------------------------------------------------- /tests/gen/block.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @B -------------------------------------------------------------------------------- /tests/gen/block.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/block.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.23.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~ -------------------------------------------------------------------------------- /tests/gen/block.24.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | } -------------------------------------------------------------------------------- /tests/gen/block.25.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | | -------------------------------------------------------------------------------- /tests/gen/block.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/block.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/block.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@  -------------------------------------------------------------------------------- /tests/gen/block.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.31.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~ -------------------------------------------------------------------------------- /tests/gen/block.32.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | } -------------------------------------------------------------------------------- /tests/gen/block.33.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | | -------------------------------------------------------------------------------- /tests/gen/block.34.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.35.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /tests/gen/block.36.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C -------------------------------------------------------------------------------- /tests/gen/block.38.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~A -------------------------------------------------------------------------------- /tests/gen/block.39.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ~C -------------------------------------------------------------------------------- /tests/gen/block.41.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | }A -------------------------------------------------------------------------------- /tests/gen/block.42.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | }B -------------------------------------------------------------------------------- /tests/gen/block.44.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | |A -------------------------------------------------------------------------------- /tests/gen/block.45.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | |B -------------------------------------------------------------------------------- /tests/gen/block.46.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  3 | |C -------------------------------------------------------------------------------- /tests/gen/block.47.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/block.48.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/block.49.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/block.50.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ~ -------------------------------------------------------------------------------- /tests/gen/block.51.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  } -------------------------------------------------------------------------------- /tests/gen/block.52.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  | -------------------------------------------------------------------------------- /tests/gen/block.53.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |   -------------------------------------------------------------------------------- /tests/gen/block.54.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  } -------------------------------------------------------------------------------- /tests/gen/block.55.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  | -------------------------------------------------------------------------------- /tests/gen/block.56.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |   -------------------------------------------------------------------------------- /tests/gen/block.57.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  ~ -------------------------------------------------------------------------------- /tests/gen/block.58.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  | -------------------------------------------------------------------------------- /tests/gen/block.59.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |   -------------------------------------------------------------------------------- /tests/gen/block.60.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  ~ -------------------------------------------------------------------------------- /tests/gen/block.61.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  } -------------------------------------------------------------------------------- /tests/gen/block.62.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.63.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | ~ -------------------------------------------------------------------------------- /tests/gen/block.64.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | } -------------------------------------------------------------------------------- /tests/gen/block.65.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | | -------------------------------------------------------------------------------- /tests/gen/block.66.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/block.67.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   A -------------------------------------------------------------------------------- /tests/gen/block.68.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  ~ B -------------------------------------------------------------------------------- /tests/gen/block.71.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   AA -------------------------------------------------------------------------------- /tests/gen/block.72.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 |  A -------------------------------------------------------------------------------- /tests/gen/block.73.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ~ B -------------------------------------------------------------------------------- /tests/gen/block.76.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  B A -------------------------------------------------------------------------------- /tests/gen/block.79.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  ~A B -------------------------------------------------------------------------------- /tests/gen/block.88.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A AA -------------------------------------------------------------------------------- /tests/gen/block.89.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA A -------------------------------------------------------------------------------- /tests/gen/block.94.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/block.95.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  B A -------------------------------------------------------------------------------- /tests/gen/block.98.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  ~A B -------------------------------------------------------------------------------- /tests/gen/br.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   A -------------------------------------------------------------------------------- /tests/gen/br.10.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 |    E  -------------------------------------------------------------------------------- /tests/gen/br.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ! E -------------------------------------------------------------------------------- /tests/gen/br.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   " E -------------------------------------------------------------------------------- /tests/gen/br.14.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |   $# E -------------------------------------------------------------------------------- /tests/gen/br.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   @ E -------------------------------------------------------------------------------- /tests/gen/br.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   ( E -------------------------------------------------------------------------------- /tests/gen/br.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A6 E -------------------------------------------------------------------------------- /tests/gen/br.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /tests/gen/br.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @@  -------------------------------------------------------------------------------- /tests/gen/br.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 |  A -------------------------------------------------------------------------------- /tests/gen/br.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/br.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  B A -------------------------------------------------------------------------------- /tests/gen/br.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A E -------------------------------------------------------------------------------- /tests/gen/br.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A A E -------------------------------------------------------------------------------- /tests/gen/br.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  E -------------------------------------------------------------------------------- /tests/gen/br.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 |   E -------------------------------------------------------------------------------- /tests/gen/br.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA E -------------------------------------------------------------------------------- /tests/gen/br_if.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @A h -------------------------------------------------------------------------------- /tests/gen/br_if.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/br_if.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/br_if.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/br_if.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/br_if.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/br_if.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | BA A -------------------------------------------------------------------------------- /tests/gen/br_if.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | BA A -------------------------------------------------------------------------------- /tests/gen/br_if.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @ -------------------------------------------------------------------------------- /tests/gen/br_if.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | @ -------------------------------------------------------------------------------- /tests/gen/br_if.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @B -------------------------------------------------------------------------------- /tests/gen/br_if.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @A z -------------------------------------------------------------------------------- /tests/gen/br_if.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/br_if.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@A  -------------------------------------------------------------------------------- /tests/gen/br_if.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB A -------------------------------------------------------------------------------- /tests/gen/br_if.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @AA E -------------------------------------------------------------------------------- /tests/gen/br_if.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @AAA E -------------------------------------------------------------------------------- /tests/gen/br_if.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 |   E -------------------------------------------------------------------------------- /tests/gen/br_if.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A  E -------------------------------------------------------------------------------- /tests/gen/br_if.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  -------------------------------------------------------------------------------- /tests/gen/br_if.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @@A  -------------------------------------------------------------------------------- /tests/gen/br_if.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @A h -------------------------------------------------------------------------------- /tests/gen/br_if.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @B z -------------------------------------------------------------------------------- /tests/gen/br_if.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/br_table.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/br_table.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@A -------------------------------------------------------------------------------- /tests/gen/br_table.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ABA -------------------------------------------------------------------------------- /tests/gen/br_table.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/br_table.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   E -------------------------------------------------------------------------------- /tests/gen/br_table.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A E -------------------------------------------------------------------------------- /tests/gen/br_table.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @A -------------------------------------------------------------------------------- /tests/gen/br_table.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @A -------------------------------------------------------------------------------- /tests/gen/br_table.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @@A -------------------------------------------------------------------------------- /tests/gen/br_table.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @A -------------------------------------------------------------------------------- /tests/gen/br_table.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @@A -------------------------------------------------------------------------------- /tests/gen/br_table.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/br_table.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | BAA -------------------------------------------------------------------------------- /tests/gen/br_table.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ~AA -------------------------------------------------------------------------------- /tests/gen/br_table.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ -------------------------------------------------------------------------------- /tests/gen/br_table.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @B -------------------------------------------------------------------------------- /tests/gen/br_table.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA -------------------------------------------------------------------------------- /tests/gen/bulk.0.wasm: -------------------------------------------------------------------------------- 1 | asm foo -------------------------------------------------------------------------------- /tests/gen/call.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | E  -------------------------------------------------------------------------------- /tests/gen/call.11.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 | @  -------------------------------------------------------------------------------- /tests/gen/call.12.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 |  @A  -------------------------------------------------------------------------------- /tests/gen/call.13.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 | @  -------------------------------------------------------------------------------- /tests/gen/call.14.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 |  @A  -------------------------------------------------------------------------------- /tests/gen/call.15.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/call.16.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 |  A@A  -------------------------------------------------------------------------------- /tests/gen/call.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/call.2.wasm: -------------------------------------------------------------------------------- 1 | asm``~ 2 | E B -------------------------------------------------------------------------------- /tests/gen/call.3.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |   -------------------------------------------------------------------------------- /tests/gen/call.4.wasm: -------------------------------------------------------------------------------- 1 | asm ``| 2 |   -------------------------------------------------------------------------------- /tests/gen/call.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  -------------------------------------------------------------------------------- /tests/gen/call.7.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 | A  -------------------------------------------------------------------------------- /tests/gen/call.8.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 | A  -------------------------------------------------------------------------------- /tests/gen/call_indirect.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/call_indirect.33.wasm: -------------------------------------------------------------------------------- 1 | asmp A  -------------------------------------------------------------------------------- /tests/gen/const.10.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const 1x) drop) -------------------------------------------------------------------------------- /tests/gen/const.100.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0xg) drop) -------------------------------------------------------------------------------- /tests/gen/const.101.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x.) drop) -------------------------------------------------------------------------------- /tests/gen/const.102.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0.g) drop) -------------------------------------------------------------------------------- /tests/gen/const.103.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0p) drop) -------------------------------------------------------------------------------- /tests/gen/const.104.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0p+) drop) -------------------------------------------------------------------------------- /tests/gen/const.105.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0p-) drop) -------------------------------------------------------------------------------- /tests/gen/const.106.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0.0p) drop) -------------------------------------------------------------------------------- /tests/gen/const.107.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0.0p+) drop) -------------------------------------------------------------------------------- /tests/gen/const.108.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0.0p-) drop) -------------------------------------------------------------------------------- /tests/gen/const.109.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x0pA) drop) -------------------------------------------------------------------------------- /tests/gen/const.11.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const 0xg) drop) -------------------------------------------------------------------------------- /tests/gen/const.110.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/const.114.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/const.116.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const 4294967296) drop) -------------------------------------------------------------------------------- /tests/gen/const.117.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const -2147483649) drop) -------------------------------------------------------------------------------- /tests/gen/const.118.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /tests/gen/const.122.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /tests/gen/const.124.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const 18446744073709551616) drop) -------------------------------------------------------------------------------- /tests/gen/const.125.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const -9223372036854775809) drop) -------------------------------------------------------------------------------- /tests/gen/const.126.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C -------------------------------------------------------------------------------- /tests/gen/const.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.136.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x1p128) drop) -------------------------------------------------------------------------------- /tests/gen/const.137.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const -0x1p128) drop) -------------------------------------------------------------------------------- /tests/gen/const.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.142.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 1e39) drop) -------------------------------------------------------------------------------- /tests/gen/const.143.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const -1e39) drop) -------------------------------------------------------------------------------- /tests/gen/const.156.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x1p1024) drop) -------------------------------------------------------------------------------- /tests/gen/const.157.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const -0x1p1024) drop) -------------------------------------------------------------------------------- /tests/gen/const.162.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 1e309) drop) -------------------------------------------------------------------------------- /tests/gen/const.163.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const -1e309) drop) -------------------------------------------------------------------------------- /tests/gen/const.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.172.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const nan:1) drop) -------------------------------------------------------------------------------- /tests/gen/const.173.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const nan:1) drop) -------------------------------------------------------------------------------- /tests/gen/const.174.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const nan:0x0) drop) -------------------------------------------------------------------------------- /tests/gen/const.175.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const nan:0x0) drop) -------------------------------------------------------------------------------- /tests/gen/const.176.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const nan:0x80_0000) drop) -------------------------------------------------------------------------------- /tests/gen/const.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.2.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const) drop) -------------------------------------------------------------------------------- /tests/gen/const.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C{Ml -------------------------------------------------------------------------------- /tests/gen/const.288.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.290.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.292.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.294.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.296.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.298.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.3.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const 0x) drop) -------------------------------------------------------------------------------- /tests/gen/const.300.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.302.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.304.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.306.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.308.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.310.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.312.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.314.wasm: -------------------------------------------------------------------------------- 1 | asm`}f 2 | C -------------------------------------------------------------------------------- /tests/gen/const.36.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const) drop) -------------------------------------------------------------------------------- /tests/gen/const.37.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const .0) drop) -------------------------------------------------------------------------------- /tests/gen/const.38.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const .0e0) drop) -------------------------------------------------------------------------------- /tests/gen/const.39.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0e) drop) -------------------------------------------------------------------------------- /tests/gen/const.4.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const 1x) drop) -------------------------------------------------------------------------------- /tests/gen/const.40.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0e+) drop) -------------------------------------------------------------------------------- /tests/gen/const.41.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0.0e) drop) -------------------------------------------------------------------------------- /tests/gen/const.42.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0.0e-) drop) -------------------------------------------------------------------------------- /tests/gen/const.43.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x) drop) -------------------------------------------------------------------------------- /tests/gen/const.44.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 1x) drop) -------------------------------------------------------------------------------- /tests/gen/const.45.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0xg) drop) -------------------------------------------------------------------------------- /tests/gen/const.46.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x.) drop) -------------------------------------------------------------------------------- /tests/gen/const.47.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0.g) drop) -------------------------------------------------------------------------------- /tests/gen/const.48.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0p) drop) -------------------------------------------------------------------------------- /tests/gen/const.49.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0p+) drop) -------------------------------------------------------------------------------- /tests/gen/const.5.wat: -------------------------------------------------------------------------------- 1 | (func (i32.const 0xg) drop) -------------------------------------------------------------------------------- /tests/gen/const.50.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0p-) drop) -------------------------------------------------------------------------------- /tests/gen/const.51.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0.0p) drop) -------------------------------------------------------------------------------- /tests/gen/const.52.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0.0p+) drop) -------------------------------------------------------------------------------- /tests/gen/const.53.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0.0p-) drop) -------------------------------------------------------------------------------- /tests/gen/const.54.wat: -------------------------------------------------------------------------------- 1 | (func (f32.const 0x0pA) drop) -------------------------------------------------------------------------------- /tests/gen/const.8.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const) drop) -------------------------------------------------------------------------------- /tests/gen/const.9.wat: -------------------------------------------------------------------------------- 1 | (func (i64.const 0x) drop) -------------------------------------------------------------------------------- /tests/gen/const.91.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const) drop) -------------------------------------------------------------------------------- /tests/gen/const.92.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const .0) drop) -------------------------------------------------------------------------------- /tests/gen/const.93.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const .0e0) drop) -------------------------------------------------------------------------------- /tests/gen/const.94.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0e) drop) -------------------------------------------------------------------------------- /tests/gen/const.95.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0e+) drop) -------------------------------------------------------------------------------- /tests/gen/const.96.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0.0e) drop) -------------------------------------------------------------------------------- /tests/gen/const.97.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0.0e-) drop) -------------------------------------------------------------------------------- /tests/gen/const.98.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 0x) drop) -------------------------------------------------------------------------------- /tests/gen/const.99.wat: -------------------------------------------------------------------------------- 1 | (func (f64.const 1x) drop) -------------------------------------------------------------------------------- /tests/gen/custom.10.wasm: -------------------------------------------------------------------------------- 1 | asm  A -------------------------------------------------------------------------------- /tests/gen/custom.3.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/data.1.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/data.10.wasm: -------------------------------------------------------------------------------- 1 | asmA # a -------------------------------------------------------------------------------- /tests/gen/data.14.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.15.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A -------------------------------------------------------------------------------- /tests/gen/data.16.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.18.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.19.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A -------------------------------------------------------------------------------- /tests/gen/data.2.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.20.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.21.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.22.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.25.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.26.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.27.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/data.28.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/data.29.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/data.30.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.31.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.37.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /tests/gen/data.38.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /tests/gen/data.41.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.42.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.43.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.44.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.47.wasm: -------------------------------------------------------------------------------- 1 | asm B -------------------------------------------------------------------------------- /tests/gen/data.48.wasm: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /tests/gen/data.49.wasm: -------------------------------------------------------------------------------- 1 | asm AA -------------------------------------------------------------------------------- /tests/gen/data.52.wasm: -------------------------------------------------------------------------------- 1 | asm Ah -------------------------------------------------------------------------------- /tests/gen/data.54.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.55.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/data.56.wasm: -------------------------------------------------------------------------------- 1 | asm testg # -------------------------------------------------------------------------------- /tests/gen/data.57.wasm: -------------------------------------------------------------------------------- 1 | asm # -------------------------------------------------------------------------------- /tests/gen/data.9.wasm: -------------------------------------------------------------------------------- 1 | asmA # a -------------------------------------------------------------------------------- /tests/gen/elem.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /tests/gen/elem.11.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.12.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep A -------------------------------------------------------------------------------- /tests/gen/elem.13.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.14.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.2.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A  3 |  -------------------------------------------------------------------------------- /tests/gen/elem.20.wasm: -------------------------------------------------------------------------------- 1 | asm`p A  2 |  -------------------------------------------------------------------------------- /tests/gen/elem.22.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.31.wasm: -------------------------------------------------------------------------------- 1 | asm` A  2 |  -------------------------------------------------------------------------------- /tests/gen/elem.32.wasm: -------------------------------------------------------------------------------- 1 | asmp B -------------------------------------------------------------------------------- /tests/gen/elem.33.wasm: -------------------------------------------------------------------------------- 1 | asmp  -------------------------------------------------------------------------------- /tests/gen/elem.34.wasm: -------------------------------------------------------------------------------- 1 | asmp AA -------------------------------------------------------------------------------- /tests/gen/elem.37.wasm: -------------------------------------------------------------------------------- 1 | asmp Ah -------------------------------------------------------------------------------- /tests/gen/elem.38.wasm: -------------------------------------------------------------------------------- 1 | asmp  -------------------------------------------------------------------------------- /tests/gen/elem.39.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.40.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /tests/gen/elem.41.wasm: -------------------------------------------------------------------------------- 1 | asm testgp # -------------------------------------------------------------------------------- /tests/gen/elem.42.wasm: -------------------------------------------------------------------------------- 1 | asmp # -------------------------------------------------------------------------------- /tests/gen/elem.45.wasm: -------------------------------------------------------------------------------- 1 | asmp A A -------------------------------------------------------------------------------- /tests/gen/elem.46.wasm: -------------------------------------------------------------------------------- 1 | asmp A A -------------------------------------------------------------------------------- /tests/gen/elem.9.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A  3 |  -------------------------------------------------------------------------------- /tests/gen/exports.0.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.1.wasm: -------------------------------------------------------------------------------- 1 | asm` ab 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.10.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.12.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.13.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.20.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.21.wasm: -------------------------------------------------------------------------------- 1 | asmA  ab -------------------------------------------------------------------------------- /tests/gen/exports.23.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.24.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.25.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.26.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.27.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.28.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.29.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.3.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.30.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /tests/gen/exports.35.wasm: -------------------------------------------------------------------------------- 1 | asmpA  aa -------------------------------------------------------------------------------- /tests/gen/exports.36.wasm: -------------------------------------------------------------------------------- 1 | asmA  aa -------------------------------------------------------------------------------- /tests/gen/exports.37.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.38.wasm: -------------------------------------------------------------------------------- 1 | asmp ab -------------------------------------------------------------------------------- /tests/gen/exports.39.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.40.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.41.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.42.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.43.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.44.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.45.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.46.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.47.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.48.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.49.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.5.wasm: -------------------------------------------------------------------------------- 1 | asm` ab 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.50.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.51.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.52.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /tests/gen/exports.53.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep 2 | a -------------------------------------------------------------------------------- /tests/gen/exports.56.wasm: -------------------------------------------------------------------------------- 1 | asmpA  aa -------------------------------------------------------------------------------- /tests/gen/exports.57.wasm: -------------------------------------------------------------------------------- 1 | asmp aa -------------------------------------------------------------------------------- /tests/gen/exports.58.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.59.wasm: -------------------------------------------------------------------------------- 1 | asm ab -------------------------------------------------------------------------------- /tests/gen/exports.6.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.60.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.61.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.62.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.63.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.64.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.65.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.66.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.67.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.68.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.69.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.7.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.70.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.71.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.72.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.73.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/exports.74.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemorya -------------------------------------------------------------------------------- /tests/gen/exports.77.wasm: -------------------------------------------------------------------------------- 1 | asmA  aa -------------------------------------------------------------------------------- /tests/gen/exports.78.wasm: -------------------------------------------------------------------------------- 1 | asmp aa -------------------------------------------------------------------------------- /tests/gen/exports.8.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/exports.9.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /tests/gen/f32.12.wat: -------------------------------------------------------------------------------- 1 | (func (result f32) (f32.const nan:arithmetic)) -------------------------------------------------------------------------------- /tests/gen/f32.13.wat: -------------------------------------------------------------------------------- 1 | (func (result f32) (f32.const nan:canonical)) -------------------------------------------------------------------------------- /tests/gen/f64.12.wat: -------------------------------------------------------------------------------- 1 | (func (result f64) (f64.const nan:arithmetic)) -------------------------------------------------------------------------------- /tests/gen/f64.13.wat: -------------------------------------------------------------------------------- 1 | (func (result f64) (f64.const nan:canonical)) -------------------------------------------------------------------------------- /tests/gen/f64_cmp.1.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCa -------------------------------------------------------------------------------- /tests/gen/f64_cmp.2.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCf -------------------------------------------------------------------------------- /tests/gen/f64_cmp.3.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCd -------------------------------------------------------------------------------- /tests/gen/f64_cmp.4.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCe -------------------------------------------------------------------------------- /tests/gen/f64_cmp.5.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCc -------------------------------------------------------------------------------- /tests/gen/f64_cmp.6.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | BCb -------------------------------------------------------------------------------- /tests/gen/float_literals.10.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1._0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.11.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const _1e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.12.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1e1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.13.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1_e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.14.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1e_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.15.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const _1.0e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.16.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0e1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.17.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0_e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.18.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0e_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.19.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0e+_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.2.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const _100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.20.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0e_+1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.21.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const _0x100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.22.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0_x100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.23.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.24.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x00_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.26.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x_1.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.27.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.28.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1_.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.29.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1._0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.3.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const +_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.30.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x_1p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.31.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1p1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.32.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1_p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.33.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1p_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.34.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x_1.0p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.35.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0p1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.36.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0_p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.37.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0p_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.38.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0p+_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.39.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 0x1.0p_+1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.4.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const -_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.41.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const _100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.42.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const +_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.43.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const -_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.44.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 99_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.45.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1__000)) -------------------------------------------------------------------------------- /tests/gen/float_literals.46.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const _1.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.47.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.48.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1_.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.49.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1._0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.5.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 99_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.50.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const _1e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.51.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1e1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.52.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1_e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.53.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1e_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.54.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const _1.0e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.55.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0e1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.56.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0_e1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.57.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0e_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.58.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0e+_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.59.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 1.0e_+1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.6.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1__000)) -------------------------------------------------------------------------------- /tests/gen/float_literals.60.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const _0x100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.61.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0_x100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.62.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x_100)) -------------------------------------------------------------------------------- /tests/gen/float_literals.63.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x00_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.65.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x_1.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.66.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.67.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1_.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.68.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1._0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.69.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x_1p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.7.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const _1.0)) -------------------------------------------------------------------------------- /tests/gen/float_literals.70.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1p1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.71.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1_p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.72.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1p_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.73.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x_1.0p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.74.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0p1_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.75.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0_p1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.76.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0p_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.77.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0p+_1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.78.wat: -------------------------------------------------------------------------------- 1 | (global f64 (f64.const 0x1.0p_+1)) -------------------------------------------------------------------------------- /tests/gen/float_literals.8.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1.0_)) -------------------------------------------------------------------------------- /tests/gen/float_literals.9.wat: -------------------------------------------------------------------------------- 1 | (global f32 (f32.const 1_.0)) -------------------------------------------------------------------------------- /tests/gen/func.16.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/func.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | } E -------------------------------------------------------------------------------- /tests/gen/func.19.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/func.20.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  E -------------------------------------------------------------------------------- /tests/gen/func.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.23.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/func.24.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  -------------------------------------------------------------------------------- /tests/gen/func.25.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  -------------------------------------------------------------------------------- /tests/gen/func.26.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  -------------------------------------------------------------------------------- /tests/gen/func.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/func.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AB -------------------------------------------------------------------------------- /tests/gen/func.31.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | C -------------------------------------------------------------------------------- /tests/gen/func.32.wasm: -------------------------------------------------------------------------------- 1 | asm`}} 2 | C -------------------------------------------------------------------------------- /tests/gen/func.34.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.35.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.36.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.37.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/func.38.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /tests/gen/func.39.wasm: -------------------------------------------------------------------------------- 1 | asm`~~ 2 | B -------------------------------------------------------------------------------- /tests/gen/func.40.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/func.41.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA -------------------------------------------------------------------------------- /tests/gen/func.42.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA -------------------------------------------------------------------------------- /tests/gen/func.43.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/func.44.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/func.45.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | BA -------------------------------------------------------------------------------- /tests/gen/func.46.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  BAA -------------------------------------------------------------------------------- /tests/gen/func.47.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | BA -------------------------------------------------------------------------------- /tests/gen/func.48.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | AAA -------------------------------------------------------------------------------- /tests/gen/func.49.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.50.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/func.51.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  C -------------------------------------------------------------------------------- /tests/gen/func.52.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/func.53.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A -------------------------------------------------------------------------------- /tests/gen/func.54.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 |  AA -------------------------------------------------------------------------------- /tests/gen/func.55.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | B A -------------------------------------------------------------------------------- /tests/gen/func.56.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A AA -------------------------------------------------------------------------------- /tests/gen/func.57.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | B A -------------------------------------------------------------------------------- /tests/gen/func.58.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @  A -------------------------------------------------------------------------------- /tests/gen/func.59.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @  AA -------------------------------------------------------------------------------- /tests/gen/func.60.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @  A -------------------------------------------------------------------------------- /tests/gen/func.61.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @  AA -------------------------------------------------------------------------------- /tests/gen/func.62.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @B  A -------------------------------------------------------------------------------- /tests/gen/func.63.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A  AA -------------------------------------------------------------------------------- /tests/gen/func.64.wat: -------------------------------------------------------------------------------- 1 | (func (nop) (local i32)) -------------------------------------------------------------------------------- /tests/gen/func.65.wat: -------------------------------------------------------------------------------- 1 | (func (nop) (param i32)) -------------------------------------------------------------------------------- /tests/gen/func.66.wat: -------------------------------------------------------------------------------- 1 | (func (nop) (result i32)) -------------------------------------------------------------------------------- /tests/gen/func_ptrs.1.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/func_ptrs.2.wasm: -------------------------------------------------------------------------------- 1 | asm` A  2 |  -------------------------------------------------------------------------------- /tests/gen/func_ptrs.3.wasm: -------------------------------------------------------------------------------- 1 | asmp B -------------------------------------------------------------------------------- /tests/gen/func_ptrs.4.wasm: -------------------------------------------------------------------------------- 1 | asmp Ah -------------------------------------------------------------------------------- /tests/gen/func_ptrs.5.wasm: -------------------------------------------------------------------------------- 1 | asmp  -------------------------------------------------------------------------------- /tests/gen/func_ptrs.6.wasm: -------------------------------------------------------------------------------- 1 | asm* 2 |  -------------------------------------------------------------------------------- /tests/gen/func_ptrs.7.wasm: -------------------------------------------------------------------------------- 1 | asmspectest print_i32+ -------------------------------------------------------------------------------- /tests/gen/global.10.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/global.11.wasm: -------------------------------------------------------------------------------- 1 | asm C -------------------------------------------------------------------------------- /tests/gen/global.12.wasm: -------------------------------------------------------------------------------- 1 | asmAA -------------------------------------------------------------------------------- /tests/gen/global.13.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/global.14.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32## -------------------------------------------------------------------------------- /tests/gen/global.15.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32A# -------------------------------------------------------------------------------- /tests/gen/global.16.wasm: -------------------------------------------------------------------------------- 1 | asm# -------------------------------------------------------------------------------- /tests/gen/global.17.wasm: -------------------------------------------------------------------------------- 1 | asm A # -------------------------------------------------------------------------------- /tests/gen/global.18.wasm: -------------------------------------------------------------------------------- 1 | asm A # -------------------------------------------------------------------------------- /tests/gen/global.19.wasm: -------------------------------------------------------------------------------- 1 | asm # A -------------------------------------------------------------------------------- /tests/gen/global.20.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32# -------------------------------------------------------------------------------- /tests/gen/global.21.wasm: -------------------------------------------------------------------------------- 1 | asmtestglobal-mut-i32# -------------------------------------------------------------------------------- /tests/gen/global.22.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 -------------------------------------------------------------------------------- /tests/gen/global.25.wasm: -------------------------------------------------------------------------------- 1 | asmA -------------------------------------------------------------------------------- /tests/gen/global.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | # -------------------------------------------------------------------------------- /tests/gen/global.29.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | # -------------------------------------------------------------------------------- /tests/gen/global.3.wasm: -------------------------------------------------------------------------------- 1 | asm }C a -------------------------------------------------------------------------------- /tests/gen/global.32.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A$ -------------------------------------------------------------------------------- /tests/gen/global.33.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | A$ -------------------------------------------------------------------------------- /tests/gen/global.36.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | $ -------------------------------------------------------------------------------- /tests/gen/global.37.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |  A@$ -------------------------------------------------------------------------------- /tests/gen/global.38.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |  A@$ -------------------------------------------------------------------------------- /tests/gen/global.4.wasm: -------------------------------------------------------------------------------- 1 | asm }C a -------------------------------------------------------------------------------- /tests/gen/global.44.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | $ -------------------------------------------------------------------------------- /tests/gen/global.45.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |  $AA -------------------------------------------------------------------------------- /tests/gen/global.6.wasm: -------------------------------------------------------------------------------- 1 | asm} -------------------------------------------------------------------------------- /tests/gen/global.8.wasm: -------------------------------------------------------------------------------- 1 | asmA -------------------------------------------------------------------------------- /tests/gen/global.9.wasm: -------------------------------------------------------------------------------- 1 | asmAh -------------------------------------------------------------------------------- /tests/gen/i32.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | E -------------------------------------------------------------------------------- /tests/gen/i32.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  EAA -------------------------------------------------------------------------------- /tests/gen/i32.11.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 | E  -------------------------------------------------------------------------------- /tests/gen/i32.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | E!  -------------------------------------------------------------------------------- /tests/gen/i32.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | E" -------------------------------------------------------------------------------- /tests/gen/i32.15.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | 3 | E$# -------------------------------------------------------------------------------- /tests/gen/i32.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | E@ -------------------------------------------------------------------------------- /tests/gen/i32.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | E( -------------------------------------------------------------------------------- /tests/gen/i32.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | EA6 -------------------------------------------------------------------------------- /tests/gen/i32.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | j -------------------------------------------------------------------------------- /tests/gen/i32.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@E -------------------------------------------------------------------------------- /tests/gen/i32.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | Aj -------------------------------------------------------------------------------- /tests/gen/i32.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@j -------------------------------------------------------------------------------- /tests/gen/i32.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@Aj -------------------------------------------------------------------------------- /tests/gen/i32.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@j -------------------------------------------------------------------------------- /tests/gen/i32.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@Aj -------------------------------------------------------------------------------- /tests/gen/i32.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAj  -------------------------------------------------------------------------------- /tests/gen/i32.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@j  -------------------------------------------------------------------------------- /tests/gen/i32.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@E -------------------------------------------------------------------------------- /tests/gen/i32.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@Aj  -------------------------------------------------------------------------------- /tests/gen/i32.31.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA@jA  -------------------------------------------------------------------------------- /tests/gen/i32.32.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@AjA  -------------------------------------------------------------------------------- /tests/gen/i32.33.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA@j -------------------------------------------------------------------------------- /tests/gen/i32.34.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@Aj -------------------------------------------------------------------------------- /tests/gen/i32.35.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | j -------------------------------------------------------------------------------- /tests/gen/i32.36.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | Aj -------------------------------------------------------------------------------- /tests/gen/i32.37.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  jAA -------------------------------------------------------------------------------- /tests/gen/i32.38.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AjAA -------------------------------------------------------------------------------- /tests/gen/i32.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@E -------------------------------------------------------------------------------- /tests/gen/i32.43.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | j!  -------------------------------------------------------------------------------- /tests/gen/i32.44.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  Aj!  -------------------------------------------------------------------------------- /tests/gen/i32.45.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | j" -------------------------------------------------------------------------------- /tests/gen/i32.46.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | Aj" -------------------------------------------------------------------------------- /tests/gen/i32.47.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 | 3 | j$# -------------------------------------------------------------------------------- /tests/gen/i32.49.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | j@ -------------------------------------------------------------------------------- /tests/gen/i32.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAE  -------------------------------------------------------------------------------- /tests/gen/i32.50.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | Aj@ -------------------------------------------------------------------------------- /tests/gen/i32.51.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | j( -------------------------------------------------------------------------------- /tests/gen/i32.52.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  Aj( -------------------------------------------------------------------------------- /tests/gen/i32.53.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | jA6 -------------------------------------------------------------------------------- /tests/gen/i32.54.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | AjA6 -------------------------------------------------------------------------------- /tests/gen/i32.55.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCj -------------------------------------------------------------------------------- /tests/gen/i32.56.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCq -------------------------------------------------------------------------------- /tests/gen/i32.57.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCm -------------------------------------------------------------------------------- /tests/gen/i32.58.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCn -------------------------------------------------------------------------------- /tests/gen/i32.59.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCl -------------------------------------------------------------------------------- /tests/gen/i32.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@E  -------------------------------------------------------------------------------- /tests/gen/i32.60.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCr -------------------------------------------------------------------------------- /tests/gen/i32.61.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCo -------------------------------------------------------------------------------- /tests/gen/i32.62.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCp -------------------------------------------------------------------------------- /tests/gen/i32.63.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCw -------------------------------------------------------------------------------- /tests/gen/i32.64.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCx -------------------------------------------------------------------------------- /tests/gen/i32.65.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCt -------------------------------------------------------------------------------- /tests/gen/i32.66.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCu -------------------------------------------------------------------------------- /tests/gen/i32.67.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCv -------------------------------------------------------------------------------- /tests/gen/i32.68.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCk -------------------------------------------------------------------------------- /tests/gen/i32.69.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCs -------------------------------------------------------------------------------- /tests/gen/i32.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@EA  -------------------------------------------------------------------------------- /tests/gen/i32.70.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | BE -------------------------------------------------------------------------------- /tests/gen/i32.71.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | Bg -------------------------------------------------------------------------------- /tests/gen/i32.72.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | Bh -------------------------------------------------------------------------------- /tests/gen/i32.73.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | Bi -------------------------------------------------------------------------------- /tests/gen/i32.74.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCF -------------------------------------------------------------------------------- /tests/gen/i32.75.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCN -------------------------------------------------------------------------------- /tests/gen/i32.76.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCO -------------------------------------------------------------------------------- /tests/gen/i32.77.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCJ -------------------------------------------------------------------------------- /tests/gen/i32.78.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCK -------------------------------------------------------------------------------- /tests/gen/i32.79.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCL -------------------------------------------------------------------------------- /tests/gen/i32.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@E -------------------------------------------------------------------------------- /tests/gen/i32.80.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCM -------------------------------------------------------------------------------- /tests/gen/i32.81.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCH -------------------------------------------------------------------------------- /tests/gen/i32.82.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCI -------------------------------------------------------------------------------- /tests/gen/i32.83.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | BCG -------------------------------------------------------------------------------- /tests/gen/i32.84.wat: -------------------------------------------------------------------------------- 1 | (func (result i32) (i32.const nan:arithmetic)) -------------------------------------------------------------------------------- /tests/gen/i32.85.wat: -------------------------------------------------------------------------------- 1 | (func (result i32) (i32.const nan:canonical)) -------------------------------------------------------------------------------- /tests/gen/i32.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | E -------------------------------------------------------------------------------- /tests/gen/i64.1.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | AC| -------------------------------------------------------------------------------- /tests/gen/i64.14.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | AC} -------------------------------------------------------------------------------- /tests/gen/i64.16.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | AP -------------------------------------------------------------------------------- /tests/gen/i64.17.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | Ay -------------------------------------------------------------------------------- /tests/gen/i64.18.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | Az -------------------------------------------------------------------------------- /tests/gen/i64.19.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | A{ -------------------------------------------------------------------------------- /tests/gen/i64.20.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACQ -------------------------------------------------------------------------------- /tests/gen/i64.21.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACY -------------------------------------------------------------------------------- /tests/gen/i64.22.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACZ -------------------------------------------------------------------------------- /tests/gen/i64.23.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACU -------------------------------------------------------------------------------- /tests/gen/i64.24.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACV -------------------------------------------------------------------------------- /tests/gen/i64.25.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACW -------------------------------------------------------------------------------- /tests/gen/i64.26.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACX -------------------------------------------------------------------------------- /tests/gen/i64.27.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACS -------------------------------------------------------------------------------- /tests/gen/i64.28.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACT -------------------------------------------------------------------------------- /tests/gen/i64.29.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | ACR -------------------------------------------------------------------------------- /tests/gen/i64.3.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | AC -------------------------------------------------------------------------------- /tests/gen/i64.30.wat: -------------------------------------------------------------------------------- 1 | (func (result i64) (i64.const nan:arithmetic)) -------------------------------------------------------------------------------- /tests/gen/i64.31.wat: -------------------------------------------------------------------------------- 1 | (func (result i64) (i64.const nan:canonical)) -------------------------------------------------------------------------------- /tests/gen/i64.5.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | AC~ -------------------------------------------------------------------------------- /tests/gen/if.100.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  @A -------------------------------------------------------------------------------- /tests/gen/if.101.wasm: -------------------------------------------------------------------------------- 1 | asm ``| 2 |  @A -------------------------------------------------------------------------------- /tests/gen/if.102.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 | @CA -------------------------------------------------------------------------------- /tests/gen/if.106.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if end $l) -------------------------------------------------------------------------------- /tests/gen/if.107.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if $a end $l) -------------------------------------------------------------------------------- /tests/gen/if.108.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if else $l end) -------------------------------------------------------------------------------- /tests/gen/if.109.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if $a else $l end) -------------------------------------------------------------------------------- /tests/gen/if.110.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if else end $l) -------------------------------------------------------------------------------- /tests/gen/if.111.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if else $l end $l) -------------------------------------------------------------------------------- /tests/gen/if.112.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if else $l1 end $l2) -------------------------------------------------------------------------------- /tests/gen/if.113.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if $a else end $l) -------------------------------------------------------------------------------- /tests/gen/if.115.wat: -------------------------------------------------------------------------------- 1 | (func i32.const 0 if $a else $l end $l) -------------------------------------------------------------------------------- /tests/gen/if.116.wat: -------------------------------------------------------------------------------- 1 | (func (if i32.const 0 (then) (else))) -------------------------------------------------------------------------------- /tests/gen/if.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@ -------------------------------------------------------------------------------- /tests/gen/if.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.14.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.15.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.16.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.18.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.19.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.20.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | A@ -------------------------------------------------------------------------------- /tests/gen/if.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@A -------------------------------------------------------------------------------- /tests/gen/if.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@A -------------------------------------------------------------------------------- /tests/gen/if.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A@A -------------------------------------------------------------------------------- /tests/gen/if.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/if.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/if.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/if.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/if.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@AAAA -------------------------------------------------------------------------------- /tests/gen/if.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | AA -------------------------------------------------------------------------------- /tests/gen/if.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/if.31.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/if.32.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.33.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.34.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/if.35.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/if.36.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.37.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/if.38.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/if.39.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A -------------------------------------------------------------------------------- /tests/gen/if.40.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.41.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.42.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A -------------------------------------------------------------------------------- /tests/gen/if.43.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ABA -------------------------------------------------------------------------------- /tests/gen/if.44.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAB -------------------------------------------------------------------------------- /tests/gen/if.45.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ABB -------------------------------------------------------------------------------- /tests/gen/if.46.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAA -------------------------------------------------------------------------------- /tests/gen/if.47.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAA -------------------------------------------------------------------------------- /tests/gen/if.48.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AAA -------------------------------------------------------------------------------- /tests/gen/if.49.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAAA -------------------------------------------------------------------------------- /tests/gen/if.50.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAAA -------------------------------------------------------------------------------- /tests/gen/if.51.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAA -------------------------------------------------------------------------------- /tests/gen/if.52.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAA -------------------------------------------------------------------------------- /tests/gen/if.53.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAAA -------------------------------------------------------------------------------- /tests/gen/if.57.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A~B -------------------------------------------------------------------------------- /tests/gen/if.58.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A~B -------------------------------------------------------------------------------- /tests/gen/if.60.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A A -------------------------------------------------------------------------------- /tests/gen/if.61.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/if.62.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A AA -------------------------------------------------------------------------------- /tests/gen/if.63.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAA -------------------------------------------------------------------------------- /tests/gen/if.64.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A AA -------------------------------------------------------------------------------- /tests/gen/if.65.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AA A -------------------------------------------------------------------------------- /tests/gen/if.68.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A AA -------------------------------------------------------------------------------- /tests/gen/if.72.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AB AA -------------------------------------------------------------------------------- /tests/gen/if.73.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAB A -------------------------------------------------------------------------------- /tests/gen/if.76.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAB AA -------------------------------------------------------------------------------- /tests/gen/if.78.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @ -------------------------------------------------------------------------------- /tests/gen/if.79.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A@@ -------------------------------------------------------------------------------- /tests/gen/if.80.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | A@@ -------------------------------------------------------------------------------- /tests/gen/if.81.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@@ -------------------------------------------------------------------------------- /tests/gen/if.82.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | AAA@ A  -------------------------------------------------------------------------------- /tests/gen/if.83.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@@  -------------------------------------------------------------------------------- /tests/gen/if.84.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@@ A  -------------------------------------------------------------------------------- /tests/gen/if.85.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@@  -------------------------------------------------------------------------------- /tests/gen/if.86.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @  -------------------------------------------------------------------------------- /tests/gen/if.87.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ AA -------------------------------------------------------------------------------- /tests/gen/if.88.wasm: -------------------------------------------------------------------------------- 1 | asm `` 2 | @   -------------------------------------------------------------------------------- /tests/gen/if.90.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ !  -------------------------------------------------------------------------------- /tests/gen/if.91.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @ " -------------------------------------------------------------------------------- /tests/gen/if.92.wasm: -------------------------------------------------------------------------------- 1 | asm`A 2 |  3 | @ $# -------------------------------------------------------------------------------- /tests/gen/if.93.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | @ @ -------------------------------------------------------------------------------- /tests/gen/if.94.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @ ( -------------------------------------------------------------------------------- /tests/gen/if.95.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | @ A6 -------------------------------------------------------------------------------- /tests/gen/if.96.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 | 3 | A -------------------------------------------------------------------------------- /tests/gen/if.97.wasm: -------------------------------------------------------------------------------- 1 | asm ``| 2 |  A -------------------------------------------------------------------------------- /tests/gen/if.98.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  CA -------------------------------------------------------------------------------- /tests/gen/if.99.wasm: -------------------------------------------------------------------------------- 1 | asm ``} 2 | CA -------------------------------------------------------------------------------- /tests/gen/int_literals.1.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const _100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.11.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const _100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.12.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const +_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.13.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const -_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.14.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const 99_)) -------------------------------------------------------------------------------- /tests/gen/int_literals.15.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const 1__000)) -------------------------------------------------------------------------------- /tests/gen/int_literals.16.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const _0x100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.17.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const 0_x100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.18.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const 0x_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.19.wat: -------------------------------------------------------------------------------- 1 | (global i64 (i64.const 0x00_)) -------------------------------------------------------------------------------- /tests/gen/int_literals.2.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const +_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.3.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const -_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.4.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const 99_)) -------------------------------------------------------------------------------- /tests/gen/int_literals.5.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const 1__000)) -------------------------------------------------------------------------------- /tests/gen/int_literals.6.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const _0x100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.7.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const 0_x100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.8.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const 0x_100)) -------------------------------------------------------------------------------- /tests/gen/int_literals.9.wat: -------------------------------------------------------------------------------- 1 | (global i32 (i32.const 0x00_)) -------------------------------------------------------------------------------- /tests/gen/labels.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @CA -------------------------------------------------------------------------------- /tests/gen/labels.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @CA -------------------------------------------------------------------------------- /tests/gen/load.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A( -------------------------------------------------------------------------------- /tests/gen/load.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A, -------------------------------------------------------------------------------- /tests/gen/load.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A- -------------------------------------------------------------------------------- /tests/gen/load.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A. -------------------------------------------------------------------------------- /tests/gen/load.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A/ -------------------------------------------------------------------------------- /tests/gen/load.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A) -------------------------------------------------------------------------------- /tests/gen/load.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A0 -------------------------------------------------------------------------------- /tests/gen/load.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A1 -------------------------------------------------------------------------------- /tests/gen/load.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A2 -------------------------------------------------------------------------------- /tests/gen/load.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A3 -------------------------------------------------------------------------------- /tests/gen/load.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A4 -------------------------------------------------------------------------------- /tests/gen/load.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A5 -------------------------------------------------------------------------------- /tests/gen/load.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A* -------------------------------------------------------------------------------- /tests/gen/load.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A+ -------------------------------------------------------------------------------- /tests/gen/load.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C( -------------------------------------------------------------------------------- /tests/gen/load.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C, -------------------------------------------------------------------------------- /tests/gen/load.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C- -------------------------------------------------------------------------------- /tests/gen/load.31.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C. -------------------------------------------------------------------------------- /tests/gen/load.32.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C/ -------------------------------------------------------------------------------- /tests/gen/load.33.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C) -------------------------------------------------------------------------------- /tests/gen/load.34.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C0 -------------------------------------------------------------------------------- /tests/gen/load.35.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C1 -------------------------------------------------------------------------------- /tests/gen/load.36.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C2 -------------------------------------------------------------------------------- /tests/gen/load.37.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C3 -------------------------------------------------------------------------------- /tests/gen/load.38.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C4 -------------------------------------------------------------------------------- /tests/gen/load.39.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  3 | C5 -------------------------------------------------------------------------------- /tests/gen/load.40.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  3 | C* -------------------------------------------------------------------------------- /tests/gen/load.41.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  3 | C+ -------------------------------------------------------------------------------- /tests/gen/load.42.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ( -------------------------------------------------------------------------------- /tests/gen/load.43.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@( -------------------------------------------------------------------------------- /tests/gen/load.44.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@( -------------------------------------------------------------------------------- /tests/gen/load.47.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@(  -------------------------------------------------------------------------------- /tests/gen/load.48.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@(A  -------------------------------------------------------------------------------- /tests/gen/load.49.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@( -------------------------------------------------------------------------------- /tests/gen/load.50.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ( -------------------------------------------------------------------------------- /tests/gen/load.51.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  (AA -------------------------------------------------------------------------------- /tests/gen/local_get.1.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/local_get.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | | -------------------------------------------------------------------------------- /tests/gen/local_get.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ~  -------------------------------------------------------------------------------- /tests/gen/local_get.13.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |   -------------------------------------------------------------------------------- /tests/gen/local_get.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ~  -------------------------------------------------------------------------------- /tests/gen/local_get.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | } E -------------------------------------------------------------------------------- /tests/gen/local_get.4.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/local_get.5.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  E -------------------------------------------------------------------------------- /tests/gen/local_get.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/local_get.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ~ -------------------------------------------------------------------------------- /tests/gen/local_get.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | } -------------------------------------------------------------------------------- /tests/gen/local_set.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ! -------------------------------------------------------------------------------- /tests/gen/local_set.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@! -------------------------------------------------------------------------------- /tests/gen/local_set.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@! -------------------------------------------------------------------------------- /tests/gen/local_set.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ! -------------------------------------------------------------------------------- /tests/gen/local_set.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  !AA -------------------------------------------------------------------------------- /tests/gen/local_set.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  C! -------------------------------------------------------------------------------- /tests/gen/local_set.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A! -------------------------------------------------------------------------------- /tests/gen/local_set.25.wasm: -------------------------------------------------------------------------------- 1 | asm`~~ 2 | B! -------------------------------------------------------------------------------- /tests/gen/local_set.30.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | A! -------------------------------------------------------------------------------- /tests/gen/local_set.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ! -------------------------------------------------------------------------------- /tests/gen/local_set.6.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  C! -------------------------------------------------------------------------------- /tests/gen/local_set.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ! -------------------------------------------------------------------------------- /tests/gen/local_tee.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | " -------------------------------------------------------------------------------- /tests/gen/local_tee.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  C" -------------------------------------------------------------------------------- /tests/gen/local_tee.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | " -------------------------------------------------------------------------------- /tests/gen/local_tee.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | " -------------------------------------------------------------------------------- /tests/gen/local_tee.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  "!  -------------------------------------------------------------------------------- /tests/gen/local_tee.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | "" -------------------------------------------------------------------------------- /tests/gen/local_tee.38.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | A" -------------------------------------------------------------------------------- /tests/gen/local_tee.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | " -------------------------------------------------------------------------------- /tests/gen/local_tee.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  C" -------------------------------------------------------------------------------- /tests/gen/local_tee.8.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/local_tee.9.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  E -------------------------------------------------------------------------------- /tests/gen/loop.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @A -------------------------------------------------------------------------------- /tests/gen/loop.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @ -------------------------------------------------------------------------------- /tests/gen/loop.14.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | @ -------------------------------------------------------------------------------- /tests/gen/loop.15.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 | @ -------------------------------------------------------------------------------- /tests/gen/loop.16.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | @ -------------------------------------------------------------------------------- /tests/gen/loop.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @A -------------------------------------------------------------------------------- /tests/gen/loop.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  @AA -------------------------------------------------------------------------------- /tests/gen/loop.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.22.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.23.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | C -------------------------------------------------------------------------------- /tests/gen/loop.24.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/loop.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/loop.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA -------------------------------------------------------------------------------- /tests/gen/loop.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ~ -------------------------------------------------------------------------------- /tests/gen/loop.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/loop.29.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@  -------------------------------------------------------------------------------- /tests/gen/loop.30.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@  -------------------------------------------------------------------------------- /tests/gen/loop.31.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.32.wasm: -------------------------------------------------------------------------------- 1 | asm ``| 2 |  -------------------------------------------------------------------------------- /tests/gen/loop.33.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  C -------------------------------------------------------------------------------- /tests/gen/loop.35.wasm: -------------------------------------------------------------------------------- 1 | asm`` 2 |  @ -------------------------------------------------------------------------------- /tests/gen/loop.41.wat: -------------------------------------------------------------------------------- 1 | (func loop end $l) -------------------------------------------------------------------------------- /tests/gen/loop.42.wat: -------------------------------------------------------------------------------- 1 | (func loop $a end $l) -------------------------------------------------------------------------------- /tests/gen/memory.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.11.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/memory.12.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /tests/gen/memory.13.wasm: -------------------------------------------------------------------------------- 1 | asm A x -------------------------------------------------------------------------------- /tests/gen/memory.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A* -------------------------------------------------------------------------------- /tests/gen/memory.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AC8 -------------------------------------------------------------------------------- /tests/gen/memory.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A, -------------------------------------------------------------------------------- /tests/gen/memory.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA: -------------------------------------------------------------------------------- /tests/gen/memory.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ? -------------------------------------------------------------------------------- /tests/gen/memory.19.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A@ -------------------------------------------------------------------------------- /tests/gen/memory.2.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.20.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.3.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.6.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/memory.7.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /tests/gen/memory_size.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ? -------------------------------------------------------------------------------- /tests/gen/nop.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/nop.2.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 |  -------------------------------------------------------------------------------- /tests/gen/nop.3.wasm: -------------------------------------------------------------------------------- 1 | asm`} 2 |  -------------------------------------------------------------------------------- /tests/gen/nop.4.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  -------------------------------------------------------------------------------- /tests/gen/return.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/return.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | AA -------------------------------------------------------------------------------- /tests/gen/return.13.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  ! -------------------------------------------------------------------------------- /tests/gen/return.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | " -------------------------------------------------------------------------------- /tests/gen/return.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | @ -------------------------------------------------------------------------------- /tests/gen/return.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | ( -------------------------------------------------------------------------------- /tests/gen/return.19.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 |  -------------------------------------------------------------------------------- /tests/gen/return.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A@ -------------------------------------------------------------------------------- /tests/gen/return.20.wasm: -------------------------------------------------------------------------------- 1 | asm`| 2 | B -------------------------------------------------------------------------------- /tests/gen/return.3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A@ -------------------------------------------------------------------------------- /tests/gen/return.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@A -------------------------------------------------------------------------------- /tests/gen/return.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@ -------------------------------------------------------------------------------- /tests/gen/return.9.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/select.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/select.10.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/select.11.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/select.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | AA -------------------------------------------------------------------------------- /tests/gen/select.14.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@A -------------------------------------------------------------------------------- /tests/gen/select.15.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/select.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@A -------------------------------------------------------------------------------- /tests/gen/select.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/select.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | ABA -------------------------------------------------------------------------------- /tests/gen/select.20.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA@A -------------------------------------------------------------------------------- /tests/gen/select.21.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  A@AA -------------------------------------------------------------------------------- /tests/gen/select.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  BBA -------------------------------------------------------------------------------- /tests/gen/select.5.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | ABA -------------------------------------------------------------------------------- /tests/gen/select.7.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  3 | ABA -------------------------------------------------------------------------------- /tests/gen/shared.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/shared.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /tests/gen/shared.2.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.3.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.4.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.5.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.6.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.7.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /tests/gen/shared.8.wasm: -------------------------------------------------------------------------------- 1 | asmspectest shared_memory -------------------------------------------------------------------------------- /tests/gen/start.0.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/start.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/start.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/start.7.wasm: -------------------------------------------------------------------------------- 1 | asm`spectestprint -------------------------------------------------------------------------------- /tests/gen/start.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /tests/gen/store.17.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 6 -------------------------------------------------------------------------------- /tests/gen/store.18.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A6 -------------------------------------------------------------------------------- /tests/gen/store.33.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 6 -------------------------------------------------------------------------------- /tests/gen/store.57.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AA8 -------------------------------------------------------------------------------- /tests/gen/store.58.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  AB9 -------------------------------------------------------------------------------- /tests/gen/switch.1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /tests/gen/type.2.wat: -------------------------------------------------------------------------------- 1 | (type (func (result $x i32))) --------------------------------------------------------------------------------