├── .depend ├── .depend.menhir ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .mailmap ├── .ocp-indent ├── .travis.yml ├── BOOTSTRAP.adoc ├── CONTRIBUTING.md ├── Changes ├── HACKING.adoc ├── INSTALL.adoc ├── LICENSE ├── Makefile ├── Makefile.best_binaries ├── Makefile.common.in ├── Makefile.config.in ├── Makefile.dev ├── Makefile.menhir ├── Makefile.tools ├── News ├── README.adoc ├── README.win32.adoc ├── VERSION ├── aclocal.m4 ├── appveyor.yml ├── asmcomp ├── CSEgen.ml ├── CSEgen.mli ├── afl_instrument.ml ├── afl_instrument.mli ├── amd64 │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── arm │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── arm64 │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── asmgen.ml ├── asmgen.mli ├── asmlibrarian.ml ├── asmlibrarian.mli ├── asmlink.ml ├── asmlink.mli ├── asmpackager.ml ├── asmpackager.mli ├── branch_relaxation.ml ├── branch_relaxation.mli ├── branch_relaxation_intf.ml ├── cmm.ml ├── cmm.mli ├── cmm_helpers.ml ├── cmm_helpers.mli ├── cmmgen.ml ├── cmmgen.mli ├── cmmgen_state.ml ├── cmmgen_state.mli ├── coloring.ml ├── coloring.mli ├── comballoc.ml ├── comballoc.mli ├── deadcode.ml ├── deadcode.mli ├── debug │ ├── available_regs.ml │ ├── available_regs.mli │ ├── compute_ranges.ml │ ├── compute_ranges.mli │ ├── compute_ranges_intf.ml │ ├── reg_availability_set.ml │ ├── reg_availability_set.mli │ ├── reg_with_debug_info.ml │ └── reg_with_debug_info.mli ├── dune ├── emit.mli ├── emitaux.ml ├── emitaux.mli ├── i386 │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── interf.ml ├── interf.mli ├── interval.ml ├── interval.mli ├── linear.ml ├── linear.mli ├── linearize.ml ├── linearize.mli ├── linscan.ml ├── linscan.mli ├── liveness.ml ├── liveness.mli ├── mach.ml ├── mach.mli ├── power │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── printcmm.ml ├── printcmm.mli ├── printlinear.ml ├── printlinear.mli ├── printmach.ml ├── printmach.mli ├── proc.mli ├── reg.ml ├── reg.mli ├── reload.mli ├── reloadgen.ml ├── reloadgen.mli ├── s390x │ ├── CSE.ml │ ├── NOTES.md │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── schedgen.ml ├── schedgen.mli ├── scheduling.mli ├── selectgen.ml ├── selectgen.mli ├── selection.mli ├── spacetime_profiling.ml ├── spacetime_profiling.mli ├── spill.ml ├── spill.mli ├── split.ml ├── split.mli ├── strmatch.ml ├── strmatch.mli ├── x86_ast.mli ├── x86_dsl.ml ├── x86_dsl.mli ├── x86_gas.ml ├── x86_gas.mli ├── x86_masm.ml ├── x86_masm.mli ├── x86_proc.ml ├── x86_proc.mli └── xtensa │ ├── CSE.ml │ ├── arch.ml │ ├── emit.mlp │ ├── proc.ml │ ├── reload.ml │ ├── scheduling.ml │ └── selection.ml ├── autogen ├── boot ├── menhir │ ├── menhirLib.ml │ ├── menhirLib.mli │ ├── parser.ml │ └── parser.mli ├── ocamlc └── ocamllex ├── bytecomp ├── bytegen.ml ├── bytegen.mli ├── bytelibrarian.ml ├── bytelibrarian.mli ├── bytelink.ml ├── bytelink.mli ├── bytepackager.ml ├── bytepackager.mli ├── bytesections.ml ├── bytesections.mli ├── dll.ml ├── dll.mli ├── dune ├── emitcode.ml ├── emitcode.mli ├── instruct.ml ├── instruct.mli ├── meta.ml ├── meta.mli ├── printinstr.ml ├── printinstr.mli ├── symtable.ml └── symtable.mli ├── compilerlibs └── .gitignore ├── configure ├── configure.ac ├── debugger ├── .depend ├── Makefile ├── breakpoints.ml ├── breakpoints.mli ├── checkpoints.ml ├── checkpoints.mli ├── command_line.ml ├── command_line.mli ├── debugcom.ml ├── debugcom.mli ├── debugger_config.ml ├── debugger_config.mli ├── dune ├── eval.ml ├── eval.mli ├── events.ml ├── events.mli ├── exec.ml ├── exec.mli ├── frames.ml ├── frames.mli ├── history.ml ├── history.mli ├── input_handling.ml ├── input_handling.mli ├── int64ops.ml ├── int64ops.mli ├── lexer.mli ├── lexer.mll ├── loadprinter.ml ├── loadprinter.mli ├── main.ml ├── parameters.ml ├── parameters.mli ├── parser.mly ├── parser_aux.mli ├── pattern_matching.ml ├── pattern_matching.mli ├── pos.ml ├── pos.mli ├── primitives.ml ├── primitives.mli ├── printval.ml ├── printval.mli ├── program_loading.ml ├── program_loading.mli ├── program_management.ml ├── program_management.mli ├── question.ml ├── question.mli ├── show_information.ml ├── show_information.mli ├── show_source.ml ├── show_source.mli ├── source.ml ├── source.mli ├── symbols.ml ├── symbols.mli ├── time_travel.ml ├── time_travel.mli ├── trap_barrier.ml ├── trap_barrier.mli ├── unix_tools.ml └── unix_tools.mli ├── driver ├── compenv.ml ├── compenv.mli ├── compile.ml ├── compile.mli ├── compile_common.ml ├── compile_common.mli ├── compmisc.ml ├── compmisc.mli ├── errors.ml ├── errors.mli ├── main.ml ├── main.mli ├── main_args.ml ├── main_args.mli ├── makedepend.ml ├── makedepend.mli ├── optcompile.ml ├── optcompile.mli ├── opterrors.ml ├── opterrors.mli ├── optmain.ml ├── optmain.mli ├── pparse.ml └── pparse.mli ├── dune ├── dune-project ├── esp32-install.sh ├── esp32.conf.in ├── file_formats ├── cmi_format.ml ├── cmi_format.mli ├── cmo_format.mli ├── cmt_format.ml ├── cmt_format.mli ├── cmx_format.mli └── cmxs_format.mli ├── lambda ├── .ocamlformat ├── .ocamlformat-enable ├── debuginfo.ml ├── debuginfo.mli ├── dune ├── generate_runtimedef.sh ├── lambda.ml ├── lambda.mli ├── matching.ml ├── matching.mli ├── printlambda.ml ├── printlambda.mli ├── runtimedef.mli ├── simplif.ml ├── simplif.mli ├── switch.ml ├── switch.mli ├── translattribute.ml ├── translattribute.mli ├── translclass.ml ├── translclass.mli ├── translcore.ml ├── translcore.mli ├── translmod.ml ├── translmod.mli ├── translobj.ml ├── translobj.mli ├── translprim.ml └── translprim.mli ├── lex ├── .depend ├── Makefile ├── common.ml ├── common.mli ├── compact.ml ├── compact.mli ├── cset.ml ├── cset.mli ├── lexer.mli ├── lexer.mll ├── lexgen.ml ├── lexgen.mli ├── main.ml ├── output.ml ├── output.mli ├── outputbis.ml ├── outputbis.mli ├── parser.mly ├── syntax.ml ├── syntax.mli ├── table.ml └── table.mli ├── man ├── Makefile ├── ocaml.m ├── ocamlc.m ├── ocamlcp.m ├── ocamldebug.m ├── ocamldep.m ├── ocamldoc.m ├── ocamllex.m ├── ocamlmktop.m ├── ocamlopt.m ├── ocamlprof.m ├── ocamlrun.m └── ocamlyacc.m ├── manual ├── LICENSE-for-the-manual ├── Makefile ├── README.md ├── manual │ ├── .gitignore │ ├── Makefile │ ├── allfiles.etex │ ├── anchored_book.hva │ ├── biblio.etex │ ├── cmds │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── afl-fuzz.etex │ │ ├── browser.etex │ │ ├── comp.etex │ │ ├── debugger.etex │ │ ├── flambda.etex │ │ ├── intf-c.etex │ │ ├── lexyacc.etex │ │ ├── native.etex │ │ ├── ocamlbuild.etex │ │ ├── ocamldep.etex │ │ ├── ocamldoc.etex │ │ ├── profil.etex │ │ ├── runtime.etex │ │ ├── spacetime-chapter.etex │ │ ├── top.etex │ │ └── unified-options.etex │ ├── foreword.etex │ ├── htmlman │ │ ├── .gitignore │ │ ├── contents_motif.gif │ │ ├── fonts │ │ │ ├── fira-sans-v8-latin-regular.eot │ │ │ ├── fira-sans-v8-latin-regular.svg │ │ │ ├── fira-sans-v8-latin-regular.ttf │ │ │ ├── fira-sans-v8-latin-regular.woff │ │ │ └── fira-sans-v8-latin-regular.woff2 │ │ ├── libgraph.gif │ │ ├── next_motif.gif │ │ └── previous_motif.gif │ ├── index.tex │ ├── infoman │ │ └── .gitignore │ ├── library │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── builtin.etex │ │ ├── compiler_libs.mld │ │ ├── compilerlibs.etex │ │ ├── core.etex │ │ ├── libbigarray.etex │ │ ├── libdynlink.etex │ │ ├── libgraph.etex │ │ ├── libnum.etex │ │ ├── libstr.etex │ │ ├── libthreads.etex │ │ ├── libunix.etex │ │ └── stdlib-blurb.etex │ ├── macros.hva │ ├── macros.tex │ ├── manual.hva │ ├── manual.inf │ ├── manual.info.header │ ├── manual.tex │ ├── refman │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── classes.etex │ │ ├── compunit.etex │ │ ├── const.etex │ │ ├── expr.etex │ │ ├── exten.etex │ │ ├── lex.etex │ │ ├── modtypes.etex │ │ ├── modules.etex │ │ ├── names.etex │ │ ├── patterns.etex │ │ ├── refman.etex │ │ ├── typedecl.etex │ │ ├── types.etex │ │ └── values.etex │ ├── style.css │ ├── texstuff │ │ └── .gitignore │ ├── textman │ │ └── .gitignore │ └── tutorials │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── advexamples.etex │ │ ├── coreexamples.etex │ │ ├── lablexamples.etex │ │ ├── moduleexamples.etex │ │ ├── objectexamples.etex │ │ └── polymorphism.etex ├── styles │ ├── altindex.sty │ ├── doc.tfm │ ├── docbf.tfm │ ├── docit.tfm │ ├── docmi.tfm │ ├── docrm.tfm │ ├── doctt.tfm │ ├── fullpage.sty │ ├── html.sty │ ├── isolatin.sty │ ├── multicols.sty │ ├── multind.sty │ ├── ocamldoc.hva │ ├── ocamldoc.sty │ ├── scroll.sty │ ├── syntaxdef.hva │ ├── syntaxdef.sty │ └── syntaxdeftxt.sty ├── tests │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── check-stdlib-modules │ └── cross_reference_checker.ml └── tools │ ├── .gitignore │ ├── Makefile │ ├── fix_index.sh │ ├── htmltransf.mll │ ├── texquote2.ml │ ├── transf.mll │ └── transfmain.ml ├── middle_end ├── backend_intf.mli ├── backend_var.ml ├── backend_var.mli ├── clambda.ml ├── clambda.mli ├── clambda_primitives.ml ├── clambda_primitives.mli ├── closure │ ├── closure.ml │ ├── closure.mli │ ├── closure_middle_end.ml │ └── closure_middle_end.mli ├── compilation_unit.ml ├── compilation_unit.mli ├── compilenv.ml ├── compilenv.mli ├── convert_primitives.ml ├── convert_primitives.mli ├── flambda │ ├── alias_analysis.ml │ ├── alias_analysis.mli │ ├── allocated_const.ml │ ├── allocated_const.mli │ ├── augment_specialised_args.ml │ ├── augment_specialised_args.mli │ ├── base_types │ │ ├── closure_element.ml │ │ ├── closure_element.mli │ │ ├── closure_id.ml │ │ ├── closure_id.mli │ │ ├── closure_origin.ml │ │ ├── closure_origin.mli │ │ ├── export_id.ml │ │ ├── export_id.mli │ │ ├── id_types.ml │ │ ├── id_types.mli │ │ ├── mutable_variable.ml │ │ ├── mutable_variable.mli │ │ ├── set_of_closures_id.ml │ │ ├── set_of_closures_id.mli │ │ ├── set_of_closures_origin.ml │ │ ├── set_of_closures_origin.mli │ │ ├── static_exception.ml │ │ ├── static_exception.mli │ │ ├── tag.ml │ │ ├── tag.mli │ │ ├── var_within_closure.ml │ │ └── var_within_closure.mli │ ├── build_export_info.ml │ ├── build_export_info.mli │ ├── closure_conversion.ml │ ├── closure_conversion.mli │ ├── closure_conversion_aux.ml │ ├── closure_conversion_aux.mli │ ├── closure_offsets.ml │ ├── closure_offsets.mli │ ├── effect_analysis.ml │ ├── effect_analysis.mli │ ├── export_info.ml │ ├── export_info.mli │ ├── export_info_for_pack.ml │ ├── export_info_for_pack.mli │ ├── extract_projections.ml │ ├── extract_projections.mli │ ├── find_recursive_functions.ml │ ├── find_recursive_functions.mli │ ├── flambda.ml │ ├── flambda.mli │ ├── flambda_invariants.ml │ ├── flambda_invariants.mli │ ├── flambda_iterators.ml │ ├── flambda_iterators.mli │ ├── flambda_middle_end.ml │ ├── flambda_middle_end.mli │ ├── flambda_to_clambda.ml │ ├── flambda_to_clambda.mli │ ├── flambda_utils.ml │ ├── flambda_utils.mli │ ├── freshening.ml │ ├── freshening.mli │ ├── import_approx.ml │ ├── import_approx.mli │ ├── inconstant_idents.ml │ ├── inconstant_idents.mli │ ├── initialize_symbol_to_let_symbol.ml │ ├── initialize_symbol_to_let_symbol.mli │ ├── inline_and_simplify.ml │ ├── inline_and_simplify.mli │ ├── inline_and_simplify_aux.ml │ ├── inline_and_simplify_aux.mli │ ├── inlining_cost.ml │ ├── inlining_cost.mli │ ├── inlining_decision.ml │ ├── inlining_decision.mli │ ├── inlining_decision_intf.mli │ ├── inlining_stats.ml │ ├── inlining_stats.mli │ ├── inlining_stats_types.ml │ ├── inlining_stats_types.mli │ ├── inlining_transforms.ml │ ├── inlining_transforms.mli │ ├── invariant_params.ml │ ├── invariant_params.mli │ ├── lift_code.ml │ ├── lift_code.mli │ ├── lift_constants.ml │ ├── lift_constants.mli │ ├── lift_let_to_initialize_symbol.ml │ ├── lift_let_to_initialize_symbol.mli │ ├── parameter.ml │ ├── parameter.mli │ ├── pass_wrapper.ml │ ├── pass_wrapper.mli │ ├── projection.ml │ ├── projection.mli │ ├── ref_to_variables.ml │ ├── ref_to_variables.mli │ ├── remove_free_vars_equal_to_args.ml │ ├── remove_free_vars_equal_to_args.mli │ ├── remove_unused_arguments.ml │ ├── remove_unused_arguments.mli │ ├── remove_unused_closure_vars.ml │ ├── remove_unused_closure_vars.mli │ ├── remove_unused_program_constructs.ml │ ├── remove_unused_program_constructs.mli │ ├── share_constants.ml │ ├── share_constants.mli │ ├── simple_value_approx.ml │ ├── simple_value_approx.mli │ ├── simplify_boxed_integer_ops.ml │ ├── simplify_boxed_integer_ops.mli │ ├── simplify_boxed_integer_ops_intf.mli │ ├── simplify_common.ml │ ├── simplify_common.mli │ ├── simplify_primitives.ml │ ├── simplify_primitives.mli │ ├── traverse_for_exported_symbols.ml │ ├── traverse_for_exported_symbols.mli │ ├── un_anf.ml │ ├── un_anf.mli │ ├── unbox_closures.ml │ ├── unbox_closures.mli │ ├── unbox_free_vars_of_closures.ml │ ├── unbox_free_vars_of_closures.mli │ ├── unbox_specialised_args.ml │ └── unbox_specialised_args.mli ├── internal_variable_names.ml ├── internal_variable_names.mli ├── linkage_name.ml ├── linkage_name.mli ├── printclambda.ml ├── printclambda.mli ├── printclambda_primitives.ml ├── printclambda_primitives.mli ├── semantics_of_primitives.ml ├── semantics_of_primitives.mli ├── symbol.ml ├── symbol.mli ├── variable.ml └── variable.mli ├── ocaml-esp32.opam ├── ocamldoc ├── .depend ├── Changes.txt ├── Makefile ├── Makefile.docfiles ├── dune ├── generators │ ├── odoc_literate.ml │ └── odoc_todo.ml ├── ocamldoc.hva ├── ocamldoc.sty ├── odoc.ml ├── odoc_analyse.ml ├── odoc_analyse.mli ├── odoc_args.ml ├── odoc_args.mli ├── odoc_ast.ml ├── odoc_ast.mli ├── odoc_class.ml ├── odoc_comments.ml ├── odoc_comments.mli ├── odoc_comments_global.ml ├── odoc_comments_global.mli ├── odoc_config.ml ├── odoc_config.mli ├── odoc_control.ml ├── odoc_cross.ml ├── odoc_cross.mli ├── odoc_dag2html.ml ├── odoc_dag2html.mli ├── odoc_dep.ml ├── odoc_dot.ml ├── odoc_env.ml ├── odoc_env.mli ├── odoc_exception.ml ├── odoc_extension.ml ├── odoc_gen.ml ├── odoc_gen.mli ├── odoc_global.ml ├── odoc_global.mli ├── odoc_html.ml ├── odoc_index.html ├── odoc_info.ml ├── odoc_info.mli ├── odoc_inherit.ml ├── odoc_latex.ml ├── odoc_latex_style.ml ├── odoc_lexer.mll ├── odoc_man.ml ├── odoc_merge.ml ├── odoc_merge.mli ├── odoc_messages.ml ├── odoc_misc.ml ├── odoc_misc.mli ├── odoc_module.ml ├── odoc_name.ml ├── odoc_name.mli ├── odoc_ocamlhtml.mll ├── odoc_parameter.ml ├── odoc_parser.mly ├── odoc_print.ml ├── odoc_print.mli ├── odoc_scan.ml ├── odoc_search.ml ├── odoc_search.mli ├── odoc_see_lexer.mll ├── odoc_sig.ml ├── odoc_sig.mli ├── odoc_str.ml ├── odoc_str.mli ├── odoc_test.ml ├── odoc_texi.ml ├── odoc_text.ml ├── odoc_text.mli ├── odoc_text_lexer.mll ├── odoc_text_parser.mly ├── odoc_to_text.ml ├── odoc_type.ml ├── odoc_types.ml ├── odoc_types.mli ├── odoc_value.ml └── remove_DEBUG ├── ocamltest ├── .depend ├── Makefile ├── README ├── actions.ml ├── actions.mli ├── actions_helpers.ml ├── actions_helpers.mli ├── builtin_actions.ml ├── builtin_actions.mli ├── builtin_variables.ml ├── builtin_variables.mli ├── dune ├── environments.ml ├── environments.mli ├── filecompare.ml ├── filecompare.mli ├── getocamloptdefaultflags ├── main.ml ├── main.mli ├── modifier_parser.ml ├── modifier_parser.mli ├── ocaml_actions.ml ├── ocaml_actions.mli ├── ocaml_backends.ml ├── ocaml_backends.mli ├── ocaml_commands.ml ├── ocaml_commands.mli ├── ocaml_compilers.ml ├── ocaml_compilers.mli ├── ocaml_directories.ml ├── ocaml_directories.mli ├── ocaml_files.ml ├── ocaml_files.mli ├── ocaml_filetypes.ml ├── ocaml_filetypes.mli ├── ocaml_flags.ml ├── ocaml_flags.mli ├── ocaml_modifiers.ml ├── ocaml_modifiers.mli ├── ocaml_tests.ml ├── ocaml_tests.mli ├── ocaml_tools.ml ├── ocaml_tools.mli ├── ocaml_toplevels.ml ├── ocaml_toplevels.mli ├── ocaml_variables.ml ├── ocaml_variables.mli ├── ocamltest_config.ml.in ├── ocamltest_config.mli ├── ocamltest_stdlib.ml ├── ocamltest_stdlib.mli ├── ocamltest_stdlib_stubs.c ├── options.ml ├── options.mli ├── result.ml ├── result.mli ├── run.h ├── run_command.ml ├── run_command.mli ├── run_common.h ├── run_stubs.c ├── run_unix.c ├── run_win32.c ├── strace.ml ├── strace.mli ├── tests.ml ├── tests.mli ├── tsl_ast.ml ├── tsl_ast.mli ├── tsl_lexer.mli ├── tsl_lexer.mll ├── tsl_parser.mly ├── tsl_semantics.ml ├── tsl_semantics.mli ├── variables.ml └── variables.mli ├── otherlibs ├── Makefile ├── Makefile.otherlibs.common ├── bigarray │ ├── .depend │ ├── Makefile │ ├── bigarray.ml │ ├── bigarray.mli │ └── empty.c ├── dynlink │ ├── .depend │ ├── Makefile │ ├── byte │ │ └── dynlink.ml │ ├── dune │ ├── dynlink.mli │ ├── dynlink_common.ml │ ├── dynlink_common.mli │ ├── dynlink_compilerlibs │ │ └── Makefile.copy-sources │ ├── dynlink_platform_intf.ml │ ├── dynlink_types.ml │ ├── dynlink_types.mli │ ├── extract_crc.ml │ └── native │ │ └── dynlink.ml ├── raw_spacetime_lib │ ├── .depend │ ├── Makefile │ ├── raw_spacetime_lib.ml │ ├── raw_spacetime_lib.mli │ └── spacetime_offline.c ├── str │ ├── .depend │ ├── Makefile │ ├── dune │ ├── str.ml │ ├── str.mli │ └── strstubs.c ├── systhreads │ ├── .depend │ ├── Makefile │ ├── condition.ml │ ├── condition.mli │ ├── event.ml │ ├── event.mli │ ├── mutex.ml │ ├── mutex.mli │ ├── st_posix.h │ ├── st_stubs.c │ ├── st_win32.h │ ├── thread.ml │ ├── thread.mli │ ├── threadUnix.ml │ ├── threadUnix.mli │ └── threads.h ├── unix │ ├── .depend │ ├── Makefile │ ├── accept.c │ ├── access.c │ ├── addrofstr.c │ ├── alarm.c │ ├── bind.c │ ├── channels.c │ ├── chdir.c │ ├── chmod.c │ ├── chown.c │ ├── chroot.c │ ├── close.c │ ├── closedir.c │ ├── connect.c │ ├── cst2constr.c │ ├── cst2constr.h │ ├── cstringv.c │ ├── dune │ ├── dup.c │ ├── dup2.c │ ├── envir.c │ ├── errmsg.c │ ├── execv.c │ ├── execve.c │ ├── execvp.c │ ├── exit.c │ ├── fchmod.c │ ├── fchown.c │ ├── fcntl.c │ ├── fork.c │ ├── fsync.c │ ├── ftruncate.c │ ├── getaddrinfo.c │ ├── getcwd.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getgr.c │ ├── getgroups.c │ ├── gethost.c │ ├── gethostname.c │ ├── getlogin.c │ ├── getnameinfo.c │ ├── getpeername.c │ ├── getpid.c │ ├── getppid.c │ ├── getproto.c │ ├── getpw.c │ ├── getserv.c │ ├── getsockname.c │ ├── gettimeofday.c │ ├── getuid.c │ ├── gmtime.c │ ├── initgroups.c │ ├── isatty.c │ ├── itimer.c │ ├── kill.c │ ├── link.c │ ├── listen.c │ ├── lockf.c │ ├── lseek.c │ ├── mkdir.c │ ├── mkfifo.c │ ├── mmap.c │ ├── mmap_ba.c │ ├── nanosecond_stat.h │ ├── nice.c │ ├── open.c │ ├── opendir.c │ ├── pipe.c │ ├── putenv.c │ ├── read.c │ ├── readdir.c │ ├── readlink.c │ ├── rename.c │ ├── rewinddir.c │ ├── rmdir.c │ ├── select.c │ ├── sendrecv.c │ ├── setgid.c │ ├── setgroups.c │ ├── setsid.c │ ├── setuid.c │ ├── shutdown.c │ ├── signals.c │ ├── sleep.c │ ├── socket.c │ ├── socketaddr.c │ ├── socketaddr.h │ ├── socketpair.c │ ├── sockopt.c │ ├── stat.c │ ├── strofaddr.c │ ├── symlink.c │ ├── termios.c │ ├── time.c │ ├── times.c │ ├── truncate.c │ ├── umask.c │ ├── unix.ml │ ├── unix.mli │ ├── unixLabels.ml │ ├── unixLabels.mli │ ├── unixsupport.c │ ├── unixsupport.h │ ├── unlink.c │ ├── utimes.c │ ├── wait.c │ └── write.c └── win32unix │ ├── .depend │ ├── Makefile │ ├── accept.c │ ├── bind.c │ ├── channels.c │ ├── close.c │ ├── close_on.c │ ├── connect.c │ ├── createprocess.c │ ├── dup.c │ ├── dup2.c │ ├── envir.c │ ├── errmsg.c │ ├── getpeername.c │ ├── getpid.c │ ├── getsockname.c │ ├── gettimeofday.c │ ├── isatty.c │ ├── link.c │ ├── listen.c │ ├── lockf.c │ ├── lseek.c │ ├── mkdir.c │ ├── mmap.c │ ├── nonblock.c │ ├── open.c │ ├── pipe.c │ ├── read.c │ ├── readlink.c │ ├── rename.c │ ├── select.c │ ├── sendrecv.c │ ├── shutdown.c │ ├── sleep.c │ ├── socket.c │ ├── socketaddr.h │ ├── sockopt.c │ ├── startup.c │ ├── stat.c │ ├── symlink.c │ ├── system.c │ ├── times.c │ ├── truncate.c │ ├── unix.ml │ ├── unixsupport.c │ ├── unixsupport.h │ ├── utimes.c │ ├── windbug.c │ ├── windbug.h │ ├── windir.c │ ├── winlist.c │ ├── winlist.h │ ├── winwait.c │ ├── winworker.c │ ├── winworker.h │ └── write.c ├── parsing ├── CONFLICTS.md ├── HACKING.adoc ├── VIPs.md ├── ast_helper.ml ├── ast_helper.mli ├── ast_invariants.ml ├── ast_invariants.mli ├── ast_iterator.ml ├── ast_iterator.mli ├── ast_mapper.ml ├── ast_mapper.mli ├── asttypes.mli ├── attr_helper.ml ├── attr_helper.mli ├── builtin_attributes.ml ├── builtin_attributes.mli ├── depend.ml ├── depend.mli ├── docstrings.ml ├── docstrings.mli ├── dune ├── lexer.mli ├── lexer.mll ├── location.ml ├── location.mli ├── longident.ml ├── longident.mli ├── parse.ml ├── parse.mli ├── parser.mly ├── parsetree.mli ├── pprintast.ml ├── pprintast.mli ├── printast.ml ├── printast.mli ├── syntaxerr.ml └── syntaxerr.mli ├── runtime ├── .depend ├── Makefile ├── afl.c ├── alloc.c ├── amd64.S ├── amd64nt.asm ├── arm.S ├── arm64.S ├── array.c ├── backtrace.c ├── backtrace_byt.c ├── backtrace_nat.c ├── bigarray.c ├── callback.c ├── caml │ ├── address_class.h │ ├── alloc.h │ ├── backtrace.h │ ├── backtrace_prim.h │ ├── bigarray.h │ ├── callback.h │ ├── compact.h │ ├── compare.h │ ├── compatibility.h │ ├── config.h │ ├── custom.h │ ├── debugger.h │ ├── domain.h │ ├── domain_state.h │ ├── domain_state.tbl │ ├── dune │ ├── dynlink.h │ ├── exec.h │ ├── fail.h │ ├── finalise.h │ ├── fix_code.h │ ├── freelist.h │ ├── gc.h │ ├── gc_ctrl.h │ ├── globroots.h │ ├── hash.h │ ├── hooks.h │ ├── instrtrace.h │ ├── instruct.h │ ├── interp.h │ ├── intext.h │ ├── io.h │ ├── m.h.in │ ├── major_gc.h │ ├── md5.h │ ├── memory.h │ ├── memprof.h │ ├── minor_gc.h │ ├── misc.h │ ├── mlvalues.h │ ├── osdeps.h │ ├── prims.h │ ├── printexc.h │ ├── reverse.h │ ├── roots.h │ ├── s.h.in │ ├── signals.h │ ├── signals_machdep.h │ ├── spacetime.h │ ├── stack.h │ ├── stacks.h │ ├── startup.h │ ├── startup_aux.h │ ├── sys.h │ ├── ui.h │ └── weak.h ├── clambda_checks.c ├── compact.c ├── compare.c ├── custom.c ├── debugger.c ├── domain.c ├── dune ├── dynlink.c ├── dynlink_nat.c ├── extern.c ├── fail_byt.c ├── fail_nat.c ├── finalise.c ├── fix_code.c ├── floats.c ├── freelist.c ├── freestanding.c ├── gc_ctrl.c ├── gen_domain_state32_inc.awk ├── gen_domain_state64_inc.awk ├── gen_primitives.sh ├── globroots.c ├── hash.c ├── i386.S ├── i386nt.asm ├── instrtrace.c ├── intern.c ├── interp.c ├── ints.c ├── io.c ├── lexing.c ├── main.c ├── major_gc.c ├── md5.c ├── memory.c ├── memprof.c ├── meta.c ├── minor_gc.c ├── misc.c ├── obj.c ├── parsing.c ├── power.S ├── printexc.c ├── roots_byt.c ├── roots_nat.c ├── s390x.S ├── signals.c ├── signals_byt.c ├── signals_nat.c ├── signals_osdep.h ├── spacetime_byt.c ├── spacetime_nat.c ├── spacetime_snapshot.c ├── stacks.c ├── startup_aux.c ├── startup_byt.c ├── startup_nat.c ├── str.c ├── sys.c ├── test.s ├── unix.c ├── weak.c ├── win32.c └── xtensa.S ├── stdlib ├── .depend ├── Compflags ├── HACKING.adoc ├── Makefile ├── StdlibModules ├── arg.ml ├── arg.mli ├── array.ml ├── array.mli ├── arrayLabels.ml ├── arrayLabels.mli ├── bigarray.ml ├── bigarray.mli ├── bool.ml ├── bool.mli ├── buffer.ml ├── buffer.mli ├── bytes.ml ├── bytes.mli ├── bytesLabels.ml ├── bytesLabels.mli ├── callback.ml ├── callback.mli ├── camlinternalFormat.ml ├── camlinternalFormat.mli ├── camlinternalFormatBasics.ml ├── camlinternalFormatBasics.mli ├── camlinternalLazy.ml ├── camlinternalLazy.mli ├── camlinternalMod.ml ├── camlinternalMod.mli ├── camlinternalOO.ml ├── camlinternalOO.mli ├── char.ml ├── char.mli ├── complex.ml ├── complex.mli ├── digest.ml ├── digest.mli ├── dune ├── ephemeron.ml ├── ephemeron.mli ├── expand_module_aliases.awk ├── filename.ml ├── filename.mli ├── float.ml ├── float.mli ├── format.ml ├── format.mli ├── fun.ml ├── fun.mli ├── gc.ml ├── gc.mli ├── genlex.ml ├── genlex.mli ├── hashbang ├── hashtbl.ml ├── hashtbl.mli ├── header.c ├── headernt.c ├── int.ml ├── int.mli ├── int32.ml ├── int32.mli ├── int64.ml ├── int64.mli ├── lazy.ml ├── lazy.mli ├── lexing.ml ├── lexing.mli ├── list.ml ├── list.mli ├── listLabels.ml ├── listLabels.mli ├── map.ml ├── map.mli ├── marshal.ml ├── marshal.mli ├── moreLabels.ml ├── moreLabels.mli ├── nativeint.ml ├── nativeint.mli ├── obj.ml ├── obj.mli ├── ocaml_operators.mld ├── oo.ml ├── oo.mli ├── option.ml ├── option.mli ├── parsing.ml ├── parsing.mli ├── pervasives.ml ├── printexc.ml ├── printexc.mli ├── printf.ml ├── printf.mli ├── queue.ml ├── queue.mli ├── random.ml ├── random.mli ├── remove_module_aliases.awk ├── result.ml ├── result.mli ├── scanf.ml ├── scanf.mli ├── seq.ml ├── seq.mli ├── set.ml ├── set.mli ├── spacetime.ml ├── spacetime.mli ├── stack.ml ├── stack.mli ├── stdLabels.ml ├── stdLabels.mli ├── std_exit.ml ├── stdlib.ml ├── stdlib.mli ├── stream.ml ├── stream.mli ├── string.ml ├── string.mli ├── stringLabels.ml ├── stringLabels.mli ├── sys.mli ├── sys.mlp ├── uchar.ml ├── uchar.mli ├── unit.ml ├── unit.mli ├── weak.ml └── weak.mli ├── testsuite ├── HACKING.adoc ├── Makefile ├── lib │ ├── Makefile │ ├── lib.ml │ ├── testing.ml │ └── testing.mli ├── summarize.awk ├── tests │ ├── afl-instrumentation │ │ ├── afltest.ml │ │ ├── afltest.run │ │ ├── harness.ml │ │ ├── has-afl-showmap.sh │ │ └── test.ml │ ├── arch-power │ │ ├── exn_raise.ml │ │ └── exn_raise.reference │ ├── array-functions │ │ ├── test.ml │ │ └── test.reference │ ├── asmcomp │ │ ├── bind_tuples.ml │ │ ├── func_sections.arm.reference │ │ ├── func_sections.ml │ │ ├── func_sections.reference │ │ ├── func_sections.run │ │ ├── is_in_static_data.c │ │ ├── is_static.ml │ │ ├── is_static_flambda.ml │ │ ├── is_static_flambda_dep.ml │ │ ├── lift_mutable_let_flambda.ml │ │ ├── optargs.ml │ │ ├── register_typing.ml │ │ ├── register_typing_switch.ml │ │ ├── simple_float_const.ml │ │ ├── simple_float_const_opaque.ml │ │ ├── static_float_array_flambda.ml │ │ ├── static_float_array_flambda_opaque.ml │ │ ├── staticalloc.ml │ │ ├── unrolling_flambda.ml │ │ ├── unrolling_flambda2.ml │ │ └── xtensa.S │ ├── asmgen │ │ ├── arith.cmm │ │ ├── catch-float.cmm │ │ ├── catch-multiple.cmm │ │ ├── catch-rec-deadhandler.cmm │ │ ├── catch-rec-deadhandler.reference │ │ ├── catch-rec-deadhandler.run │ │ ├── catch-rec.cmm │ │ ├── catch-try-float.cmm │ │ ├── catch-try.cmm │ │ ├── checkbound.cmm │ │ ├── even-odd-spill-float.cmm │ │ ├── even-odd-spill.cmm │ │ ├── even-odd.cmm │ │ ├── fib.cmm │ │ ├── integr.cmm │ │ ├── main.c │ │ ├── mainarith.c │ │ ├── pgcd.cmm │ │ ├── quicksort.cmm │ │ ├── quicksort2.cmm │ │ ├── soli.cmm │ │ ├── tagged-fib.cmm │ │ ├── tagged-integr.cmm │ │ ├── tagged-quicksort.cmm │ │ ├── tagged-tak.cmm │ │ └── tak.cmm │ ├── ast-invariants │ │ ├── test.ml │ │ └── test.reference │ ├── backtrace │ │ ├── backtrace.byte.reference │ │ ├── backtrace.ml │ │ ├── backtrace.opt.reference │ │ ├── backtrace.run │ │ ├── backtrace2.byte.reference │ │ ├── backtrace2.ml │ │ ├── backtrace2.opt.reference │ │ ├── backtrace3.byte.reference │ │ ├── backtrace3.ml │ │ ├── backtrace3.opt.reference │ │ ├── backtrace_deprecated.byte.reference │ │ ├── backtrace_deprecated.ml │ │ ├── backtrace_deprecated.opt.reference │ │ ├── backtrace_or_exception.byte.reference │ │ ├── backtrace_or_exception.ml │ │ ├── backtrace_or_exception.opt.reference │ │ ├── backtrace_slots.byte.reference │ │ ├── backtrace_slots.ml │ │ ├── backtrace_slots.opt.reference │ │ ├── backtraces_and_finalizers.ml │ │ ├── backtraces_and_finalizers.reference │ │ ├── callstack.ml │ │ ├── callstack.reference │ │ ├── filter-locations.sh │ │ ├── inline_test.byte.reference │ │ ├── inline_test.ml │ │ ├── inline_test.opt.reference │ │ ├── inline_test.run │ │ ├── inline_traversal_test.byte.reference │ │ ├── inline_traversal_test.ml │ │ ├── inline_traversal_test.opt.reference │ │ ├── inline_traversal_test.run │ │ ├── pr6920_why_at.byte.reference │ │ ├── pr6920_why_at.ml │ │ ├── pr6920_why_at.native.reference │ │ ├── pr6920_why_at.opt.reference │ │ ├── pr6920_why_swallow.byte.reference │ │ ├── pr6920_why_swallow.ml │ │ ├── pr6920_why_swallow.native.reference │ │ ├── pr6920_why_swallow.opt.reference │ │ ├── raw_backtrace.byte.reference │ │ ├── raw_backtrace.ml │ │ └── raw_backtrace.opt.reference │ ├── basic-float │ │ ├── float_compare.ml │ │ ├── float_compare.reference │ │ ├── float_literals.ml │ │ ├── tfloat_hex.ml │ │ ├── tfloat_hex.reference │ │ ├── tfloat_record.ml │ │ ├── tfloat_record.reference │ │ ├── zero_sized_float_arrays.ml │ │ └── zero_sized_float_arrays.reference │ ├── basic-io-2 │ │ ├── io.ml │ │ ├── io.reference │ │ └── test-file-short-lines │ ├── basic-io │ │ ├── wc.ml │ │ └── wc.reference │ ├── basic-manyargs │ │ ├── manyargs.ml │ │ ├── manyargs.reference │ │ └── manyargsprim.c │ ├── basic-modules │ │ ├── anonymous.ml │ │ ├── anonymous.ocamlc.reference │ │ ├── anonymous.ocamlopt.flambda.reference │ │ ├── anonymous.ocamlopt.reference │ │ ├── main.ml │ │ ├── main.mli │ │ ├── main.reference │ │ ├── offset.ml │ │ ├── pr4008.ml │ │ ├── pr6726.ml │ │ ├── pr7427.ml │ │ └── recursive_module_evaluation_errors.ml │ ├── basic-more │ │ ├── bounds.ml │ │ ├── bounds.reference │ │ ├── div_by_zero.ml │ │ ├── div_by_zero.reference │ │ ├── function_in_ref.ml │ │ ├── function_in_ref.reference │ │ ├── if_in_if.ml │ │ ├── if_in_if.reference │ │ ├── morematch.compilers.reference │ │ ├── morematch.ml │ │ ├── morematch.reference │ │ ├── opaque_prim.ml │ │ ├── opaque_prim.reference │ │ ├── pr1271.ml │ │ ├── pr1271.reference │ │ ├── pr2719.ml │ │ ├── pr2719.reference │ │ ├── pr6216.ml │ │ ├── pr6216.reference │ │ ├── record_evaluation_order.ml │ │ ├── record_evaluation_order.reference │ │ ├── robustmatch.compilers.reference │ │ ├── robustmatch.ml │ │ ├── robustmatch.reference │ │ ├── sequential_and_or.ml │ │ ├── sequential_and_or.reference │ │ ├── structural_constants.ml │ │ ├── structural_constants.reference │ │ ├── tbuffer.ml │ │ ├── tbuffer.reference │ │ ├── testrandom.ml │ │ ├── testrandom.reference │ │ ├── top_level_patterns.ml │ │ ├── top_level_patterns.reference │ │ ├── tprintf.ml │ │ └── tprintf.reference │ ├── basic-multdef │ │ ├── multdef.ml │ │ ├── multdef.mli │ │ ├── usemultdef.ml │ │ └── usemultdef.reference │ ├── basic-private │ │ ├── length.ml │ │ ├── length.mli │ │ ├── tlength.ml │ │ └── tlength.reference │ ├── basic │ │ ├── arrays.ml │ │ ├── arrays.reference │ │ ├── bigints.ml │ │ ├── bigints.reference │ │ ├── boxedints.ml │ │ ├── boxedints.reference │ │ ├── camlCase.ml │ │ ├── constprop.ml.c │ │ ├── constprop.ml.reference │ │ ├── divint.ml │ │ ├── divint.reference │ │ ├── equality.ml │ │ ├── equality.reference │ │ ├── eval_order_1.ml │ │ ├── eval_order_1.reference │ │ ├── eval_order_2.ml │ │ ├── eval_order_2.reference │ │ ├── eval_order_3.ml │ │ ├── eval_order_3.reference │ │ ├── eval_order_4.ml │ │ ├── eval_order_4.reference │ │ ├── eval_order_6.ml │ │ ├── eval_order_6.reference │ │ ├── float.ml │ │ ├── float.reference │ │ ├── float_physical_equality.ml │ │ ├── float_physical_equality.reference │ │ ├── includestruct.ml │ │ ├── includestruct.reference │ │ ├── localexn.ml │ │ ├── localexn.reference │ │ ├── localfunction.ml │ │ ├── localfunction.reference │ │ ├── maps.ml │ │ ├── maps.reference │ │ ├── min_int.ml │ │ ├── min_int.reference │ │ ├── opt_variants.ml │ │ ├── opt_variants.reference │ │ ├── patmatch.ml │ │ ├── patmatch.reference │ │ ├── patmatch_incoherence.ml │ │ ├── patmatch_split_no_or.ml │ │ ├── pr7253.ml │ │ ├── pr7253.reference │ │ ├── pr7533.ml │ │ ├── pr7533.reference │ │ ├── pr7657.ml │ │ ├── pr7657.reference │ │ ├── recvalues.ml │ │ ├── recvalues.reference │ │ ├── sets.ml │ │ ├── sets.reference │ │ ├── stringmatch.ml │ │ ├── stringmatch.reference │ │ ├── switch_opts.ml │ │ ├── switch_opts.reference │ │ ├── tailcalls.ml │ │ ├── tailcalls.reference │ │ ├── trigraph.ml │ │ ├── trigraph.reference │ │ ├── unit_naming.compilers.reference │ │ ├── unit_naming.ml │ │ ├── zero_divided_by_n.ml │ │ └── zero_divided_by_n.reference │ ├── c-api │ │ ├── alloc_async.ml │ │ ├── alloc_async.reference │ │ └── alloc_async_stubs.c │ ├── callback │ │ ├── callbackprim.c │ │ ├── signals_alloc.ml │ │ ├── signals_alloc.reference │ │ ├── tcallback.ml │ │ └── tcallback.reference │ ├── compatibility │ │ ├── main.ml │ │ ├── main.reference │ │ └── stub.c │ ├── compiler-libs │ │ └── test_longident.ml │ ├── embedded │ │ ├── cmcaml.ml │ │ ├── cmcaml.reference │ │ ├── cmmain.c │ │ └── cmstub.c │ ├── ephe-c-api │ │ ├── stubs.c │ │ ├── test.ml │ │ └── test.reference │ ├── exotic-syntax │ │ ├── exotic.ml │ │ └── exotic.reference │ ├── extension-constructor │ │ ├── test.ml │ │ └── test.reference │ ├── flambda │ │ ├── approx_meet.ml │ │ ├── approx_meet.reference │ │ ├── gpr2239.ml │ │ ├── gpr2239.reference │ │ ├── gpr998.ml │ │ ├── gpr998.reference │ │ ├── specialise.ml │ │ └── specialise.reference │ ├── float-unboxing │ │ ├── float_subst_boxed_number.ml │ │ └── unbox_under_assign.ml │ ├── fma │ │ ├── fma.ml │ │ └── fma.reference │ ├── formats-transition │ │ ├── deprecated_unsigned_printers.ml │ │ ├── deprecated_unsigned_printers.ocaml.reference │ │ ├── ignored_scan_counters.ml │ │ ├── ignored_scan_counters.ocaml.reference │ │ ├── legacy_incompatible_flags.ml │ │ ├── legacy_incompatible_flags.ocaml.reference │ │ ├── legacy_unfinished_modifiers.ml │ │ └── legacy_unfinished_modifiers.ocaml.reference │ ├── formatting │ │ ├── errors_batch.ml │ │ ├── errors_batch.reference │ │ ├── margins.ml │ │ └── margins.ocaml.reference │ ├── functors │ │ ├── functors.compilers.reference │ │ └── functors.ml │ ├── gc-roots │ │ ├── globroots.ml │ │ ├── globroots.reference │ │ └── globrootsprim.c │ ├── generalized-open │ │ ├── accepted_batch.ml │ │ ├── accepted_batch.reference │ │ ├── accepted_expect.ml │ │ ├── clambda_optim.ml │ │ ├── expansiveness.ml │ │ ├── funct_body.compilers.reference │ │ ├── funct_body.ml │ │ ├── gpr1506.ml │ │ └── shadowing.ml │ ├── int64-unboxing │ │ ├── stubs.c │ │ ├── test.ml │ │ └── test.reference │ ├── lazy │ │ ├── lazy1.ml │ │ └── lazy1.reference │ ├── let-syntax │ │ └── let_syntax.ml │ ├── letrec-check │ │ ├── basic.ml │ │ ├── extension_constructor.ml │ │ ├── flat_float_array.ml │ │ ├── float_unboxing.ml │ │ ├── labels.ml │ │ ├── lazy_.ml │ │ ├── modules.ml │ │ ├── no_flat_float_array.ml │ │ ├── objects.ml │ │ ├── pr7215.ml │ │ ├── pr7215.ocaml.reference │ │ ├── pr7231.ml │ │ ├── pr7231.ocaml.reference │ │ ├── pr7706.ml │ │ ├── pr7706.ocaml.reference │ │ ├── records.ml │ │ └── unboxed.ml │ ├── letrec-compilation │ │ ├── backreferences.ml │ │ ├── backreferences.reference │ │ ├── class_1.ml │ │ ├── class_1.reference │ │ ├── class_2.ml │ │ ├── class_2.reference │ │ ├── evaluation_order_1.ml │ │ ├── evaluation_order_1.reference │ │ ├── evaluation_order_2.ml │ │ ├── evaluation_order_2.reference │ │ ├── evaluation_order_3.ml │ │ ├── evaluation_order_3.reference │ │ ├── float_block_1.ml │ │ ├── float_block_1.reference │ │ ├── generic_array.ml │ │ ├── generic_array.reference │ │ ├── labels.ml │ │ ├── labels.reference │ │ ├── lazy_.ml │ │ ├── lazy_.reference │ │ ├── lists.ml │ │ ├── lists.reference │ │ ├── mixing_value_closures_1.ml │ │ ├── mixing_value_closures_1.reference │ │ ├── mixing_value_closures_2.ml │ │ ├── mixing_value_closures_2.reference │ │ ├── mutual_functions.ml │ │ ├── mutual_functions.reference │ │ ├── nested.ml │ │ ├── nested.reference │ │ ├── pr4989.ml │ │ ├── pr4989.reference │ │ ├── pr8681.ml │ │ ├── pr8681.reference │ │ ├── record_with.ml │ │ ├── record_with.reference │ │ ├── ref.ml │ │ └── ref.reference │ ├── lexing │ │ ├── comments.ml │ │ ├── comments.ocaml.reference │ │ ├── escape.ml │ │ ├── escape.ocaml.reference │ │ ├── uchar_esc.ml │ │ └── uchar_esc.ocaml.reference │ ├── lib-arg │ │ ├── testarg.ml │ │ ├── testarg.reference │ │ ├── testerror.ml │ │ └── testerror.reference │ ├── lib-array │ │ └── test_array.ml │ ├── lib-bigarray-2 │ │ ├── bigarrf.f │ │ ├── bigarrfml.ml │ │ ├── bigarrfml.reference │ │ ├── bigarrfstub.c │ │ └── has-gfortran.sh │ ├── lib-bigarray-file │ │ ├── mapfile.ml │ │ └── mapfile.reference │ ├── lib-bigarray │ │ ├── bigarrays.ml │ │ ├── bigarrays.reference │ │ ├── change_layout.ml │ │ ├── change_layout.reference │ │ ├── fftba.ml │ │ ├── fftba.reference │ │ ├── pr5115.ml │ │ ├── pr5115.reference │ │ ├── weak_bigarray.ml │ │ └── weak_bigarray.reference │ ├── lib-bool │ │ ├── test.ml │ │ └── test.reference │ ├── lib-buffer │ │ ├── test.ml │ │ └── test.reference │ ├── lib-bytes │ │ ├── binary.ml │ │ ├── test_bytes.ml │ │ └── test_bytes.reference │ ├── lib-digest │ │ ├── md5.ml │ │ └── md5.reference │ ├── lib-dynlink-bytecode │ │ ├── custom.reference │ │ ├── main.ml │ │ ├── main.reference │ │ ├── plug1.ml │ │ ├── plug2.ml │ │ ├── registry.ml │ │ ├── static.reference │ │ ├── stub1.c │ │ └── stub2.c │ ├── lib-dynlink-csharp │ │ ├── entry.c │ │ ├── main.bytecode.reference │ │ ├── main.cs │ │ ├── main.ml │ │ ├── main.native.reference │ │ └── plugin.ml │ ├── lib-dynlink-initializers │ │ ├── test1_inited_second.ml │ │ ├── test1_main.ml │ │ ├── test1_plugin.ml │ │ ├── test2_inited_first.ml │ │ ├── test2_main.ml │ │ ├── test2_plugin.ml │ │ ├── test3_main.ml │ │ ├── test3_plugin_a.ml │ │ ├── test3_plugin_b.ml │ │ ├── test4_main.ml │ │ ├── test4_plugin_a.ml │ │ ├── test4_plugin_b.ml │ │ ├── test5_main.ml │ │ ├── test5_plugin_a.ml │ │ ├── test5_plugin_b.ml │ │ ├── test5_second_plugin.ml │ │ ├── test6_main.ml │ │ ├── test6_plugin.ml │ │ ├── test6_second_plugin.ml │ │ ├── test7_interface_only.mli │ │ ├── test7_main.ml │ │ ├── test7_plugin.ml │ │ ├── test8_main.ml │ │ ├── test8_plugin_a.ml │ │ ├── test8_plugin_b.ml │ │ ├── test8_plugin_b.mli │ │ ├── test9_main.ml │ │ ├── test9_plugin.ml │ │ ├── test9_second_plugin.ml │ │ └── test9_second_plugin.mli │ ├── lib-dynlink-native │ │ ├── a.ml │ │ ├── api.ml │ │ ├── b.ml │ │ ├── bug.ml │ │ ├── c.ml │ │ ├── factorial.c │ │ ├── main.ml │ │ ├── main.reference │ │ ├── pack_client.ml │ │ ├── packed1.ml │ │ ├── packed1_client.ml │ │ ├── plugin.ml │ │ ├── plugin.mli │ │ ├── plugin2.ml │ │ ├── plugin4.ml │ │ ├── plugin_ext.ml │ │ ├── plugin_high_arity.ml │ │ ├── plugin_ref.ml │ │ ├── plugin_simple.ml │ │ ├── plugin_thread.ml │ │ └── sub │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ ├── plugin.ml │ │ │ └── plugin3.ml │ ├── lib-dynlink-packed │ │ ├── a.ml │ │ ├── b.ml │ │ ├── byte.reference │ │ ├── loader.ml │ │ └── native.reference │ ├── lib-dynlink-pr4229 │ │ ├── abstract.ml │ │ ├── abstract.mli │ │ ├── client.ml │ │ ├── main.ml │ │ ├── main.reference │ │ ├── static.ml │ │ └── sub │ │ │ ├── abstract.ml │ │ │ └── abstract.mli │ ├── lib-dynlink-pr4839 │ │ ├── byte.plugin1.reference │ │ ├── byte.plugin2.reference │ │ ├── byte.plugin3.reference │ │ ├── byte.plugin4.reference │ │ ├── host │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ └── host.ml │ │ ├── native.plugin1.reference │ │ ├── native.plugin2.reference │ │ ├── native.plugin3.reference │ │ ├── native.plugin4.reference │ │ ├── plugin1 │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ └── plugin.ml │ │ ├── plugin2 │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ └── plugin.ml │ │ ├── plugin3 │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ └── plugin.ml │ │ ├── plugin4 │ │ │ ├── api.ml │ │ │ ├── api.mli │ │ │ └── plugin.ml │ │ └── test.ml │ ├── lib-dynlink-pr6950 │ │ ├── b.ml │ │ ├── byte.reference │ │ ├── config.ml │ │ ├── loader.ml │ │ └── native.reference │ ├── lib-dynlink-pr9209 │ │ ├── dyn.ml │ │ ├── lib.ml │ │ ├── lib2.ml │ │ ├── main.reference │ │ ├── ocamltests │ │ └── test.c │ ├── lib-dynlink-private │ │ ├── pig.mli │ │ ├── plugin1 │ │ │ ├── sheep.ml │ │ │ └── sheep.mli │ │ ├── plugin2 │ │ │ ├── cow.ml │ │ │ └── cow.mli │ │ ├── plugin2b │ │ │ ├── cow.ml │ │ │ └── cow.mli │ │ ├── plugin2c │ │ │ ├── cow.ml │ │ │ └── cow.mli │ │ ├── plugin3 │ │ │ ├── pig.ml │ │ │ └── pig.mli │ │ ├── plugin4 │ │ │ ├── chicken.ml │ │ │ └── chicken.mli │ │ ├── plugin5 │ │ │ ├── chicken.ml │ │ │ └── chicken.mli │ │ ├── plugin6 │ │ │ ├── partridge.ml │ │ │ ├── partridge.mli │ │ │ ├── pheasant.ml │ │ │ └── pheasant.mli │ │ ├── sheep.ml │ │ ├── sheep.mli │ │ └── test.ml │ ├── lib-filename │ │ ├── extension.ml │ │ ├── extension.reference │ │ ├── myecho.ml │ │ ├── null.ml │ │ ├── quotecommand.ml │ │ ├── quotecommand.reference │ │ ├── suffix.ml │ │ └── suffix.reference │ ├── lib-float │ │ ├── test.ml │ │ └── test.reference │ ├── lib-floatarray │ │ └── floatarray.ml │ ├── lib-format │ │ ├── pp_print_custom_break.ml │ │ ├── pp_print_custom_break.reference │ │ ├── pr6824.ml │ │ ├── pr6824.reference │ │ ├── print_if_newline.ml │ │ ├── print_if_newline.reference │ │ ├── tformat.ml │ │ └── tformat.reference │ ├── lib-fun │ │ ├── test.ml │ │ └── test.reference │ ├── lib-hashtbl │ │ ├── hfun.ml │ │ ├── hfun.reference │ │ ├── htbl.ml │ │ └── htbl.reference │ ├── lib-int │ │ ├── test.ml │ │ └── test.reference │ ├── lib-int64 │ │ ├── test.ml │ │ └── test.reference │ ├── lib-internalformat │ │ └── test.ml │ ├── lib-list │ │ ├── test.ml │ │ └── test.reference │ ├── lib-marshal │ │ ├── intern_final.ml │ │ ├── intern_final.reference │ │ ├── intext.ml │ │ ├── intext.reference │ │ └── intextaux.c │ ├── lib-obj │ │ ├── reachable_words.ml │ │ ├── reachable_words.reference │ │ ├── with_tag.ml │ │ └── with_tag.reference │ ├── lib-option │ │ ├── test.ml │ │ └── test.reference │ ├── lib-printf │ │ ├── pr6534.ml │ │ ├── pr6534.reference │ │ ├── pr6938.ml │ │ ├── pr6938.reference │ │ ├── tprintf.ml │ │ └── tprintf.reference │ ├── lib-queue │ │ ├── test.ml │ │ └── test.reference │ ├── lib-random │ │ ├── rand.ml │ │ └── rand.reference │ ├── lib-result │ │ ├── test.ml │ │ └── test.reference │ ├── lib-scanf-2 │ │ ├── tscanf2.reference │ │ ├── tscanf2_io.ml │ │ ├── tscanf2_master.ml │ │ └── tscanf2_worker.ml │ ├── lib-scanf │ │ ├── tscanf.ml │ │ └── tscanf.reference │ ├── lib-seq │ │ ├── test.ml │ │ └── test.reference │ ├── lib-set │ │ ├── testmap.ml │ │ ├── testmap.reference │ │ ├── testset.ml │ │ └── testset.reference │ ├── lib-stack │ │ ├── test.ml │ │ └── test.reference │ ├── lib-stdlabels │ │ ├── test_stdlabels.ml │ │ └── test_stdlabels.reference │ ├── lib-stdlib │ │ └── pervasives_deprecated.ml │ ├── lib-str │ │ ├── t01.ml │ │ └── t01.reference │ ├── lib-stream │ │ ├── count_concat_bug.ml │ │ ├── count_concat_bug.reference │ │ ├── mpr7769.ml │ │ ├── mpr7769.reference │ │ └── mpr7769.txt │ ├── lib-string │ │ ├── test_string.ml │ │ └── test_string.reference │ ├── lib-sys │ │ ├── immediate64.ml │ │ ├── rename.ml │ │ └── rename.reference │ ├── lib-systhreads │ │ ├── testfork.ml │ │ ├── testfork.reference │ │ ├── testpreempt.ml │ │ ├── testpreempt.reference │ │ ├── testyield.ml │ │ ├── threadsigmask.ml │ │ └── threadsigmask.reference │ ├── lib-threads │ │ ├── backtrace_threads.ml │ │ ├── bank.ml │ │ ├── bank.reference │ │ ├── beat.ml │ │ ├── beat.reference │ │ ├── bufchan.ml │ │ ├── bufchan.reference │ │ ├── close.ml │ │ ├── close.reference │ │ ├── delayintr.ml │ │ ├── delayintr.reference │ │ ├── delayintr.run │ │ ├── fileio.ml │ │ ├── fileio.reference │ │ ├── pr4466.ml │ │ ├── pr4466.reference │ │ ├── pr5325.ml │ │ ├── pr5325.reference │ │ ├── pr7638.ml │ │ ├── pr7638.reference │ │ ├── prodcons.ml │ │ ├── prodcons.reference │ │ ├── prodcons2.ml │ │ ├── prodcons2.reference │ │ ├── sieve.ml │ │ ├── sieve.reference │ │ ├── sigint.c │ │ ├── signal.check-program-output │ │ ├── signal.ml │ │ ├── signal.run │ │ ├── sockets.ml │ │ ├── sockets.reference │ │ ├── swapchan.ml │ │ ├── swapchan.reference │ │ ├── swapchan.run │ │ ├── tls.ml │ │ ├── tls.reference │ │ ├── tls.run │ │ ├── torture.ml │ │ └── torture.reference │ ├── lib-uchar │ │ ├── test.ml │ │ └── test.reference │ ├── lib-unix │ │ ├── common │ │ │ ├── channel_of.ml │ │ │ ├── channel_of.reference │ │ │ ├── cloexec.ml │ │ │ ├── cloexec.reference │ │ │ ├── cmdline_prog.ml │ │ │ ├── dup.ml │ │ │ ├── dup.reference │ │ │ ├── dup2.ml │ │ │ ├── dup2.reference │ │ │ ├── fdstatus_aux.c │ │ │ ├── fdstatus_main.ml │ │ │ ├── getaddrinfo.ml │ │ │ ├── pipe_eof.ml │ │ │ ├── pipe_eof.reference │ │ │ ├── process_pid.ml │ │ │ ├── process_pid.reference │ │ │ ├── redirections.ml │ │ │ ├── redirections.reference │ │ │ ├── reflector.ml │ │ │ ├── rename.ml │ │ │ ├── rename.reference │ │ │ ├── test_unix_cmdline.ml │ │ │ ├── test_unix_cmdline.reference │ │ │ ├── truncate.ml │ │ │ ├── truncate.reference │ │ │ ├── utimes.ml │ │ │ ├── utimes.reference │ │ │ ├── utimes.txt │ │ │ ├── wait_nohang.ml │ │ │ └── wait_nohang.reference │ │ ├── isatty │ │ │ ├── isatty_std.ml │ │ │ ├── isatty_std.reference │ │ │ ├── isatty_tty.ml │ │ │ └── isatty_tty.reference │ │ ├── unix-execvpe │ │ │ ├── exec.ml │ │ │ ├── exec.reference │ │ │ ├── exec.run │ │ │ ├── has-execvpe.sh │ │ │ ├── script3 │ │ │ └── subdir │ │ │ │ ├── nonexec │ │ │ │ ├── script1 │ │ │ │ └── script2 │ │ ├── unix-socket │ │ │ ├── is-linux.sh │ │ │ ├── recvfrom.ml │ │ │ ├── recvfrom_linux.ml │ │ │ ├── recvfrom_linux.reference │ │ │ ├── recvfrom_unix.ml │ │ │ └── recvfrom_unix.reference │ │ ├── win-env │ │ │ ├── stubs.c │ │ │ ├── test_env.ml │ │ │ └── test_env.reference │ │ ├── win-stat │ │ │ ├── fakeclock.c │ │ │ ├── test.ml │ │ │ ├── test.reference │ │ │ └── test.run │ │ └── win-symlink │ │ │ ├── test.ml │ │ │ └── test.reference │ ├── link-test │ │ ├── aliases.ml │ │ ├── external.ml │ │ ├── external.mli │ │ ├── external_for_pack.ml │ │ ├── external_for_pack.mli │ │ ├── submodule.ml │ │ ├── test.ml │ │ ├── test.reference │ │ └── use_in_pack.ml │ ├── local-functions │ │ ├── tupled.ml │ │ └── tupled2.ml │ ├── locale │ │ ├── stubs.c │ │ ├── test.ml │ │ └── test.reference │ ├── manual-intf-c │ │ ├── curses.ml │ │ ├── curses_stubs.c │ │ ├── prog.ml │ │ └── prog2.reference │ ├── match-exception-warnings │ │ ├── exhaustiveness_warnings.ml │ │ ├── no_mixing_under_guard.ml │ │ ├── no_value_clauses.ml │ │ ├── placement.ml │ │ ├── pr7083.ml │ │ └── reachability.ml │ ├── match-exception │ │ ├── allocation.ml │ │ ├── allocation.reference │ │ ├── exception_propagation.ml │ │ ├── exception_propagation.reference │ │ ├── identifier_sharing.ml │ │ ├── identifier_sharing.reference │ │ ├── match_failure.ml │ │ ├── match_failure.reference │ │ ├── nested_handlers.ml │ │ ├── nested_handlers.reference │ │ ├── raise_from_success_continuation.ml │ │ ├── raise_from_success_continuation.reference │ │ ├── streams.ml │ │ ├── streams.reference │ │ ├── tail_calls.ml │ │ └── tail_calls.reference │ ├── messages │ │ └── precise_locations.ml │ ├── misc-kb │ │ ├── equations.ml │ │ ├── equations.mli │ │ ├── kb.ml │ │ ├── kb.mli │ │ ├── kbmain.ml │ │ ├── kbmain.reference │ │ ├── orderings.ml │ │ ├── orderings.mli │ │ ├── terms.ml │ │ └── terms.mli │ ├── misc-unsafe │ │ ├── almabench.ml │ │ ├── almabench.reference │ │ ├── fft.ml │ │ ├── fft.reference │ │ ├── quicksort.ml │ │ ├── quicksort.reference │ │ ├── soli.ml │ │ └── soli.reference │ ├── misc │ │ ├── bdd.ml │ │ ├── bdd.reference │ │ ├── boyer.ml │ │ ├── boyer.reference │ │ ├── ephetest.ml │ │ ├── ephetest.reference │ │ ├── ephetest2.ml │ │ ├── ephetest2.reference │ │ ├── ephetest3.ml │ │ ├── ephetest3.reference │ │ ├── fib.ml │ │ ├── fib.reference │ │ ├── finaliser.ml │ │ ├── finaliser.reference │ │ ├── gcwords.ml │ │ ├── gcwords.reference │ │ ├── gpr1370.ml │ │ ├── gpr1370.reference │ │ ├── hamming.ml │ │ ├── hamming.reference │ │ ├── nucleic.ml │ │ ├── nucleic.reference │ │ ├── pr7168.ml │ │ ├── pr7168.reference │ │ ├── sieve.ml │ │ ├── sieve.reference │ │ ├── sorts.ml │ │ ├── sorts.reference │ │ ├── takc.ml │ │ ├── takc.reference │ │ ├── taku.ml │ │ ├── taku.reference │ │ ├── weaklifetime.ml │ │ ├── weaklifetime.reference │ │ ├── weaklifetime2.ml │ │ ├── weaklifetime2.reference │ │ ├── weaktest.ml │ │ └── weaktest.reference │ ├── no-alias-deps │ │ ├── a2235.ml │ │ ├── aliases.compilers.reference │ │ ├── aliases.ml │ │ ├── aliases.reference │ │ ├── b.cmi.invalid │ │ ├── c.mli │ │ ├── d.mli │ │ ├── gpr2235.ml │ │ ├── lib2235.ml │ │ ├── lib__2235.ml │ │ └── user_of_lib2235.ml │ ├── opaque │ │ ├── fst │ │ │ ├── opaque_impl.ml │ │ │ ├── opaque_intf.ml │ │ │ └── regular.ml │ │ ├── intf │ │ │ ├── opaque_impl.mli │ │ │ ├── opaque_intf.mli │ │ │ └── regular.mli │ │ ├── snd │ │ │ ├── opaque_impl.ml │ │ │ ├── opaque_intf.ml │ │ │ └── regular.ml │ │ └── test.ml │ ├── output-complete-obj │ │ ├── github9344.ml │ │ ├── github9344.reference │ │ ├── github9344.sh │ │ ├── puts.c │ │ ├── test.ml │ │ ├── test.ml_stub.c │ │ ├── test2.ml │ │ └── test2.reference │ ├── pack-and-lto │ │ ├── Makefile │ │ ├── main_warning.ml │ │ ├── no_lto.ml │ │ ├── package │ │ │ ├── a.ml │ │ │ └── b.ml │ │ ├── test.ml │ │ ├── test.reference │ │ └── warning.reference │ ├── parse-errors │ │ ├── escape_error.compilers.reference │ │ ├── escape_error.ml │ │ ├── expecting.compilers.reference │ │ ├── expecting.ml │ │ ├── pr7847.compilers.reference │ │ ├── pr7847.ml │ │ ├── unclosed_class_signature.compilers.reference │ │ ├── unclosed_class_signature.mli │ │ ├── unclosed_class_simpl_expr1.compilers.reference │ │ ├── unclosed_class_simpl_expr1.ml │ │ ├── unclosed_class_simpl_expr2.compilers.reference │ │ ├── unclosed_class_simpl_expr2.ml │ │ ├── unclosed_class_simpl_expr3.compilers.reference │ │ ├── unclosed_class_simpl_expr3.ml │ │ ├── unclosed_object.compilers.reference │ │ ├── unclosed_object.ml │ │ ├── unclosed_paren_module_expr1.compilers.reference │ │ ├── unclosed_paren_module_expr1.ml │ │ ├── unclosed_paren_module_expr2.compilers.reference │ │ ├── unclosed_paren_module_expr2.ml │ │ ├── unclosed_paren_module_expr3.compilers.reference │ │ ├── unclosed_paren_module_expr3.ml │ │ ├── unclosed_paren_module_expr4.compilers.reference │ │ ├── unclosed_paren_module_expr4.ml │ │ ├── unclosed_paren_module_expr5.compilers.reference │ │ ├── unclosed_paren_module_expr5.ml │ │ ├── unclosed_paren_module_type.compilers.reference │ │ ├── unclosed_paren_module_type.mli │ │ ├── unclosed_sig.compilers.reference │ │ ├── unclosed_sig.mli │ │ ├── unclosed_simple_expr.compilers.reference │ │ ├── unclosed_simple_expr.ml │ │ ├── unclosed_simple_pattern.compilers.reference │ │ ├── unclosed_simple_pattern.ml │ │ ├── unclosed_struct.compilers.reference │ │ └── unclosed_struct.ml │ ├── parsetree │ │ ├── source.ml │ │ ├── test.ml │ │ └── test.reference │ ├── parsing │ │ ├── anonymous_class_parameter.compilers.reference │ │ ├── anonymous_class_parameter.ml │ │ ├── arrow_ambiguity.compilers.reference │ │ ├── arrow_ambiguity.ml │ │ ├── attributes.compilers.reference │ │ ├── attributes.ml │ │ ├── broken_invariants.compilers.reference │ │ ├── broken_invariants.ml │ │ ├── constructor_declarations.compilers.reference │ │ ├── constructor_declarations.ml │ │ ├── docstrings.ml │ │ ├── extended_indexoperators.ml │ │ ├── extensions.compilers.reference │ │ ├── extensions.ml │ │ ├── hash_ambiguity.compilers.reference │ │ ├── hash_ambiguity.ml │ │ ├── illegal_ppx.ml │ │ ├── int_and_float_with_modifier.compilers.reference │ │ ├── int_and_float_with_modifier.ml │ │ ├── multi_indices.ml │ │ ├── pr6604.compilers.reference │ │ ├── pr6604.ml │ │ ├── pr6604_2.compilers.reference │ │ ├── pr6604_2.ml │ │ ├── pr6604_3.compilers.reference │ │ ├── pr6604_3.ml │ │ ├── pr6865.compilers.reference │ │ ├── pr6865.ml │ │ ├── pr7165.compilers.reference │ │ ├── pr7165.ml │ │ ├── reloc.ml │ │ ├── shortcut_ext_attr.compilers.reference │ │ └── shortcut_ext_attr.ml │ ├── ppx-attributes │ │ ├── warning.ml │ │ └── warning.reference │ ├── ppx-contexts │ │ ├── myppx.ml │ │ ├── test.compilers.reference │ │ └── test.ml │ ├── prim-bigstring │ │ ├── bigstring_access.ml │ │ ├── bigstring_access.reference │ │ ├── string_access.ml │ │ └── string_access.reference │ ├── prim-bswap │ │ ├── bswap.ml │ │ └── bswap.reference │ ├── prim-revapply │ │ ├── apply.ml │ │ ├── apply.reference │ │ ├── revapply.ml │ │ └── revapply.reference │ ├── printing-types │ │ ├── disambiguation.ml │ │ ├── pr248.ml │ │ └── pr248.ocaml.reference │ ├── raise-counts │ │ ├── a.ml │ │ ├── b.ml │ │ ├── main.ml │ │ └── main.reference │ ├── regression │ │ ├── gpr1623 │ │ │ ├── gpr1623.ml │ │ │ └── gpr1623.reference │ │ ├── missing_set_of_closures │ │ │ ├── a.ml │ │ │ ├── b.ml │ │ │ ├── b2.ml │ │ │ ├── dir │ │ │ │ └── c.ml │ │ │ └── missing_set_of_closures.ml │ │ ├── pr3612 │ │ │ ├── custom_finalize.c │ │ │ ├── pr3612.ml │ │ │ └── pr3612.reference │ │ ├── pr5233 │ │ │ ├── pr5233.ml │ │ │ └── pr5233.reference │ │ ├── pr5757 │ │ │ ├── pr5757.ml │ │ │ └── pr5757.reference │ │ ├── pr6024 │ │ │ ├── pr6024.ml │ │ │ └── pr6024.reference │ │ ├── pr7042 │ │ │ ├── pr7042.ml │ │ │ └── pr7042.reference │ │ ├── pr7426 │ │ │ ├── pr7426.ml │ │ │ └── pr7426.reference │ │ ├── pr7798 │ │ │ ├── pr7798.ml │ │ │ └── pr7798.reference │ │ ├── pr7920 │ │ │ ├── pr7920.ml │ │ │ └── pr7920.reference │ │ ├── pr8769 │ │ │ ├── fortuna.ml │ │ │ ├── nocrypto.mli │ │ │ ├── pr8769.ml │ │ │ └── rng.ml │ │ ├── pr9028 │ │ │ ├── pr9028.ml │ │ │ └── pr9028.reference │ │ └── pr9292 │ │ │ └── pr9292.ml │ ├── required-external │ │ ├── file.ml │ │ ├── main.ml │ │ └── main.reference │ ├── runtime-C-exceptions │ │ ├── stub_test.c │ │ ├── test.ml │ │ └── test.reference │ ├── runtime-errors │ │ ├── has-stackoverflow-detection.sh │ │ ├── stackoverflow.ml │ │ ├── stackoverflow.native.reference │ │ ├── stackoverflow.reference │ │ ├── stackoverflow.run │ │ ├── syserror.ml │ │ ├── syserror.unix.reference │ │ └── syserror.win32.reference │ ├── runtime-objects │ │ └── Tests.ml │ ├── self-contained-toplevel │ │ ├── foo.ml │ │ ├── gen_cached_cmi.ml │ │ ├── input.ml │ │ ├── main.ml │ │ └── main.reference │ ├── shadow_include │ │ ├── artificial.ml │ │ ├── cannot_shadow_error.compilers.reference │ │ ├── cannot_shadow_error.ml │ │ └── shadow_all.ml │ ├── tool-caml-tex │ │ ├── ellipses.input │ │ ├── ellipses.ml │ │ ├── ellipses.reference │ │ ├── redirections.input │ │ ├── redirections.ml │ │ └── redirections.reference │ ├── tool-command-line │ │ ├── test.compilers.reference │ │ ├── test.ml │ │ └── unknown-file │ ├── tool-debugger │ │ ├── basic │ │ │ ├── debuggee.ml │ │ │ ├── debuggee.reference │ │ │ └── input_script │ │ ├── dynlink │ │ │ ├── host.debug.reference │ │ │ ├── host.ml │ │ │ ├── host.reference │ │ │ ├── input_script │ │ │ └── plugin.ml │ │ ├── find-artifacts │ │ │ ├── debuggee.ml │ │ │ ├── debuggee.reference │ │ │ ├── in │ │ │ │ ├── blah.ml │ │ │ │ └── foo.ml │ │ │ └── input_script │ │ ├── no_debug_event │ │ │ ├── a.ml │ │ │ ├── b.ml │ │ │ ├── input_script │ │ │ ├── noev.ml │ │ │ └── noev.reference │ │ └── printer │ │ │ ├── debuggee.ml │ │ │ ├── debuggee.reference │ │ │ ├── input_script │ │ │ └── printer.ml │ ├── tool-expect-test │ │ └── clean_typer.ml │ ├── tool-lexyacc │ │ ├── chars.mll │ │ ├── gram_aux.ml │ │ ├── grammar.mly │ │ ├── input │ │ ├── lexgen.ml │ │ ├── main.compilers.reference │ │ ├── main.ml │ │ ├── main.reference │ │ ├── mpr7760.mll │ │ ├── mpr7760.reference │ │ ├── output.ml │ │ ├── scan_aux.ml │ │ ├── scanner.mll │ │ └── syntax.ml │ ├── tool-ocaml-annot │ │ ├── check-annot.sh │ │ ├── failure.ml │ │ ├── success.ml │ │ └── typeonly.ml │ ├── tool-ocaml │ │ ├── t000.ml │ │ ├── t010-const0.ml │ │ ├── t010-const1.ml │ │ ├── t010-const2.ml │ │ ├── t010-const3.ml │ │ ├── t011-constint.ml │ │ ├── t020.ml │ │ ├── t021-pushconst1.ml │ │ ├── t021-pushconst2.ml │ │ ├── t021-pushconst3.ml │ │ ├── t022-pushconstint.ml │ │ ├── t040-makeblock1.ml │ │ ├── t040-makeblock2.ml │ │ ├── t040-makeblock3.ml │ │ ├── t041-makeblock.ml │ │ ├── t050-getglobal.ml │ │ ├── t050-pushgetglobal.ml │ │ ├── t051-getglobalfield.ml │ │ ├── t051-pushgetglobalfield.ml │ │ ├── t060-raise.ml │ │ ├── t070-branch.ml │ │ ├── t070-branchif.ml │ │ ├── t070-branchifnot.ml │ │ ├── t071-boolnot.ml │ │ ├── t080-eq.ml │ │ ├── t080-geint.ml │ │ ├── t080-gtint.ml │ │ ├── t080-leint.ml │ │ ├── t080-ltint.ml │ │ ├── t080-neq.ml │ │ ├── t090-acc0.ml │ │ ├── t090-acc1.ml │ │ ├── t090-acc2.ml │ │ ├── t090-acc3.ml │ │ ├── t090-acc4.ml │ │ ├── t090-acc5.ml │ │ ├── t090-acc6.ml │ │ ├── t090-acc7.ml │ │ ├── t091-acc.ml │ │ ├── t092-pushacc.ml │ │ ├── t092-pushacc0.ml │ │ ├── t092-pushacc1.ml │ │ ├── t092-pushacc2.ml │ │ ├── t092-pushacc3.ml │ │ ├── t092-pushacc4.ml │ │ ├── t092-pushacc5.ml │ │ ├── t092-pushacc6.ml │ │ ├── t092-pushacc7.ml │ │ ├── t093-pushacc.ml │ │ ├── t100-pushtrap.ml │ │ ├── t101-poptrap.ml │ │ ├── t110-addint.ml │ │ ├── t110-andint.ml │ │ ├── t110-asrint-1.ml │ │ ├── t110-asrint-2.ml │ │ ├── t110-divint-1.ml │ │ ├── t110-divint-2.ml │ │ ├── t110-divint-3.ml │ │ ├── t110-lslint.ml │ │ ├── t110-lsrint.ml │ │ ├── t110-modint-1.ml │ │ ├── t110-modint-2.ml │ │ ├── t110-mulint.ml │ │ ├── t110-negint.ml │ │ ├── t110-offsetint.ml │ │ ├── t110-orint.ml │ │ ├── t110-subint.ml │ │ ├── t110-xorint.ml │ │ ├── t120-getstringchar.ml │ │ ├── t121-setstringchar.ml │ │ ├── t130-getvectitem.ml │ │ ├── t130-vectlength.ml │ │ ├── t131-setvectitem.ml │ │ ├── t140-switch-1.ml │ │ ├── t140-switch-2.ml │ │ ├── t140-switch-3.ml │ │ ├── t140-switch-4.ml │ │ ├── t141-switch-5.ml │ │ ├── t141-switch-6.ml │ │ ├── t141-switch-7.ml │ │ ├── t142-switch-8.ml │ │ ├── t142-switch-9.ml │ │ ├── t142-switch-A.ml │ │ ├── t150-push-1.ml │ │ ├── t150-push-2.ml │ │ ├── t160-closure.ml │ │ ├── t161-apply1.ml │ │ ├── t162-return.ml │ │ ├── t163.ml │ │ ├── t164-apply2.ml │ │ ├── t164-apply3.ml │ │ ├── t165-apply.ml │ │ ├── t170-envacc2.ml │ │ ├── t170-envacc3.ml │ │ ├── t170-envacc4.ml │ │ ├── t171-envacc.ml │ │ ├── t172-pushenvacc1.ml │ │ ├── t172-pushenvacc2.ml │ │ ├── t172-pushenvacc3.ml │ │ ├── t172-pushenvacc4.ml │ │ ├── t173-pushenvacc.ml │ │ ├── t180-appterm1.ml │ │ ├── t180-appterm2.ml │ │ ├── t180-appterm3.ml │ │ ├── t181-appterm.ml │ │ ├── t190-makefloatblock-1.ml │ │ ├── t190-makefloatblock-2.ml │ │ ├── t190-makefloatblock-3.ml │ │ ├── t191-vectlength.ml │ │ ├── t192-getfloatfield-1.ml │ │ ├── t192-getfloatfield-2.ml │ │ ├── t193-setfloatfield-1.ml │ │ ├── t193-setfloatfield-2.ml │ │ ├── t200-getfield0.ml │ │ ├── t200-getfield1.ml │ │ ├── t200-getfield2.ml │ │ ├── t200-getfield3.ml │ │ ├── t201-getfield.ml │ │ ├── t210-setfield0.ml │ │ ├── t210-setfield1.ml │ │ ├── t210-setfield2.ml │ │ ├── t210-setfield3.ml │ │ ├── t211-setfield.ml │ │ ├── t220-assign.ml │ │ ├── t230-check_signals.ml │ │ ├── t240-c_call1.ml │ │ ├── t240-c_call2.ml │ │ ├── t240-c_call3.ml │ │ ├── t240-c_call4.ml │ │ ├── t240-c_call5.ml │ │ ├── t250-closurerec-1.ml │ │ ├── t250-closurerec-2.ml │ │ ├── t251-pushoffsetclosure0.ml │ │ ├── t251-pushoffsetclosure2.ml │ │ ├── t251-pushoffsetclosurem2.ml │ │ ├── t252-pushoffsetclosure.ml │ │ ├── t253-offsetclosure0.ml │ │ ├── t253-offsetclosure2.ml │ │ ├── t253-offsetclosurem2.ml │ │ ├── t254-offsetclosure.ml │ │ ├── t260-offsetref.ml │ │ ├── t270-push_retaddr.ml │ │ ├── t300-getmethod.ml │ │ ├── t301-object.ml │ │ ├── t310-alloc-1.ml │ │ ├── t310-alloc-2.ml │ │ ├── t320-gc-1.ml │ │ ├── t320-gc-2.ml │ │ ├── t320-gc-3.ml │ │ ├── t330-compact-1.ml │ │ ├── t330-compact-2.ml │ │ ├── t330-compact-3.ml │ │ ├── t330-compact-4.ml │ │ ├── t340-weak.ml │ │ ├── t350-heapcheck.ml │ │ ├── t360-stacks-1.ml │ │ └── t360-stacks-2.ml │ ├── tool-ocamlc-compat32 │ │ ├── compat32.compilers.reference │ │ └── compat32.ml │ ├── tool-ocamlc-error-cleanup │ │ ├── check-error-cleanup.sh │ │ └── test.ml │ ├── tool-ocamlc-open │ │ ├── a.ml │ │ ├── b.ml │ │ └── tool-ocamlc-open.ml │ ├── tool-ocamlc-stop-after │ │ ├── stop_after_parsing_impl.compilers.reference │ │ ├── stop_after_parsing_impl.ml │ │ ├── stop_after_parsing_intf.compilers.reference │ │ ├── stop_after_parsing_intf.mli │ │ ├── stop_after_typing_impl.compilers.reference │ │ └── stop_after_typing_impl.ml │ ├── tool-ocamldep-modalias │ │ ├── A.ml │ │ ├── B.ml │ │ ├── C.ml │ │ ├── D.ml │ │ ├── Makefile.build │ │ ├── Makefile.build2 │ │ ├── depend.mk.reference │ │ ├── depend.mk2.reference │ │ ├── depend.mod.reference │ │ ├── depend.mod2.reference │ │ ├── depend.mod3.reference │ │ ├── lib.mli │ │ ├── lib_impl.ml │ │ ├── main.ml │ │ └── setup-links.sh │ ├── tool-ocamldep-shadowing │ │ ├── a.ml │ │ ├── a.reference │ │ ├── dir1 │ │ │ └── b.ml │ │ └── dir2 │ │ │ ├── b.mli │ │ │ └── c.mli │ ├── tool-ocamldoc-open │ │ ├── Readme │ │ ├── alias.ml │ │ ├── inner.ml │ │ ├── main.latex.reference │ │ ├── main.ml │ │ └── main.ocamldoc.latex.reference │ ├── tool-ocamldoc │ │ ├── Documentation_tags.html.reference │ │ ├── Documentation_tags.mli │ │ ├── Extensible_variant.latex.reference │ │ ├── Extensible_variant.ml │ │ ├── Extensible_variant.ocamldoc.latex.reference │ │ ├── Include_module_type_of.html.reference │ │ ├── Include_module_type_of.latex.reference │ │ ├── Include_module_type_of.mli │ │ ├── Inline_records.html.reference │ │ ├── Inline_records.latex.reference │ │ ├── Inline_records.man.reference │ │ ├── Inline_records.mli │ │ ├── Inline_records_bis.latex.reference │ │ ├── Inline_records_bis.ml │ │ ├── Item_ids.html.reference │ │ ├── Item_ids.mli │ │ ├── Level_0.latex.reference │ │ ├── Level_0.mli │ │ ├── Linebreaks.html.reference │ │ ├── Linebreaks.mli │ │ ├── Loop.html.reference │ │ ├── Loop.latex.reference │ │ ├── Loop.ml │ │ ├── Module_whitespace.html.reference │ │ ├── Module_whitespace.ml │ │ ├── Module_whitespace.ocamldoc.html.reference │ │ ├── No_preamble.html.reference │ │ ├── No_preamble.mli │ │ ├── Paragraph.html.reference │ │ ├── Paragraph.mli │ │ ├── Short_description.latex.reference │ │ ├── Short_description.txt │ │ ├── Test.latex.reference │ │ ├── Test.mli │ │ ├── Variants.html.reference │ │ ├── Variants.latex.reference │ │ ├── Variants.mli │ │ ├── latex_ref.latex.reference │ │ ├── latex_ref.mli │ │ ├── odoc_test.ml │ │ ├── t01.ml │ │ ├── t01.reference │ │ ├── t02.ml │ │ ├── t02.reference │ │ ├── t03.ml │ │ ├── t03.ocamldoc.reference │ │ ├── t03.reference │ │ ├── t04.ml │ │ ├── t04.reference │ │ ├── t05.ml │ │ ├── t05.reference │ │ └── type_Linebreaks.reference │ ├── tool-ocamlobjinfo │ │ ├── has-lib-bfd.sh │ │ ├── question.ml │ │ └── question.reference │ ├── tool-toplevel-invocation │ │ ├── first_arg_fail.txt │ │ ├── first_arg_fail.txt.reference │ │ ├── indirect_first_arg_fail.txt │ │ ├── indirect_first_arg_fail.txt.reference │ │ ├── indirect_last_arg_fail.txt │ │ ├── indirect_last_arg_fail.txt.reference │ │ ├── last_arg_fail.txt │ │ ├── last_arg_fail.txt.reference │ │ ├── print_args.ml │ │ ├── print_args.reference │ │ ├── test.ml │ │ ├── working_arg.txt │ │ └── working_arg.txt.reference │ ├── tool-toplevel │ │ ├── error_highlighting.compilers.reference │ │ ├── error_highlighting.ml │ │ ├── error_highlighting_use1.ml │ │ ├── error_highlighting_use2.ml │ │ ├── error_highlighting_use3.ml │ │ ├── error_highlighting_use4.ml │ │ ├── exotic_lists.compilers.reference │ │ ├── exotic_lists.ml │ │ ├── pr6468.compilers.reference │ │ ├── pr6468.ml │ │ ├── pr7060.compilers.reference │ │ ├── pr7060.ml │ │ ├── pr7751.compilers.reference │ │ ├── pr7751.ml │ │ ├── redefinition_hints.compilers.reference │ │ ├── redefinition_hints.ml │ │ ├── strings.compilers.reference │ │ ├── strings.ml │ │ ├── tracing.compilers.reference │ │ ├── tracing.ml │ │ └── uncaught_exceptions.ml │ ├── translprim │ │ ├── array_spec.compilers.flat.reference │ │ ├── array_spec.compilers.no-flat.reference │ │ ├── array_spec.ml │ │ ├── comparison_table.compilers.reference │ │ ├── comparison_table.ml │ │ ├── locs.ml │ │ ├── locs.reference │ │ ├── module_coercion.compilers.flat.reference │ │ ├── module_coercion.compilers.no-flat.reference │ │ ├── module_coercion.ml │ │ ├── ref_spec.compilers.reference │ │ └── ref_spec.ml │ ├── typing-core-bugs │ │ ├── const_int_hint.ml │ │ ├── missing_rec_hint.ml │ │ ├── repeated_did_you_mean.ml │ │ ├── type_expected_explanation.ml │ │ └── unit_fun_hints.ml │ ├── typing-deprecated │ │ ├── alerts.ml │ │ └── deprecated.ml │ ├── typing-extension-constructor │ │ ├── test.ml │ │ └── test.ocaml.reference │ ├── typing-extensions │ │ ├── cast.ml │ │ ├── cast.ocaml.reference │ │ ├── extensions.ml │ │ ├── msg.ml │ │ ├── msg.ocaml.reference │ │ └── open_types.ml │ ├── typing-fstclassmod │ │ ├── fstclassmod.ml │ │ └── fstclassmod.reference │ ├── typing-gadts │ │ ├── ambiguity.ml │ │ ├── didier.ml │ │ ├── dynamic_frisch.ml │ │ ├── nested_equations.ml │ │ ├── omega07.ml │ │ ├── or_patterns.ml │ │ ├── pr5332.ml │ │ ├── pr5689.ml │ │ ├── pr5785.ml │ │ ├── pr5848.ml │ │ ├── pr5906.ml │ │ ├── pr5948.ml │ │ ├── pr5981.ml │ │ ├── pr5985.ml │ │ ├── pr5989.ml │ │ ├── pr5997.ml │ │ ├── pr6158.ml │ │ ├── pr6163.ml │ │ ├── pr6174.ml │ │ ├── pr6241.ml │ │ ├── pr6690.ml │ │ ├── pr6817.ml │ │ ├── pr6934.ml │ │ ├── pr6980.ml │ │ ├── pr6993_bad.ml │ │ ├── pr7016.ml │ │ ├── pr7160.ml │ │ ├── pr7214.ml │ │ ├── pr7222.ml │ │ ├── pr7230.ml │ │ ├── pr7234.ml │ │ ├── pr7260.ml │ │ ├── pr7269.ml │ │ ├── pr7298.ml │ │ ├── pr7374.ml │ │ ├── pr7378.ml │ │ ├── pr7381.ml │ │ ├── pr7390.ml │ │ ├── pr7391.ml │ │ ├── pr7397.ml │ │ ├── pr7421.ml │ │ ├── pr7432.ml │ │ ├── pr7618.ml │ │ ├── pr7747.ml │ │ ├── pr9019.ml │ │ ├── term-conv.ml │ │ ├── test.ml │ │ ├── unexpected_existentials.ml │ │ ├── unify_mb.ml │ │ ├── variables_in_mcomp.ml │ │ └── yallop_bugs.ml │ ├── typing-immediate │ │ └── immediate.ml │ ├── typing-implicit_unpack │ │ └── implicit_unpack.ml │ ├── typing-labels │ │ ├── mixin.ml │ │ ├── mixin.reference │ │ ├── mixin2.ml │ │ ├── mixin2.reference │ │ ├── mixin3.ml │ │ └── mixin3.reference │ ├── typing-misc-bugs │ │ ├── core_array_reduced_ok.ml │ │ ├── pr6303_bad.compilers.reference │ │ ├── pr6303_bad.ml │ │ ├── pr6946_bad.compilers.reference │ │ └── pr6946_bad.ml │ ├── typing-misc │ │ ├── constraints.ml │ │ ├── disambiguate_principality.ml │ │ ├── empty_ppx.ml │ │ ├── empty_variant.ml │ │ ├── enrich_typedecl.ml │ │ ├── exotic_unifications.ml │ │ ├── external_arity.ml │ │ ├── gpr2277.ml │ │ ├── includeclass_errors.ml │ │ ├── inside_out.ml │ │ ├── is_expansive.ml │ │ ├── labels.ml │ │ ├── mapping.ml │ │ ├── occur_check.ml │ │ ├── pat_type_sharing.ml │ │ ├── pattern_open.ml │ │ ├── polyvars.ml │ │ ├── pr6416.ml │ │ ├── pr6634.ml │ │ ├── pr6939-flat-float-array.ml │ │ ├── pr6939-no-flat-float-array.ml │ │ ├── pr7103.ml │ │ ├── pr7228.ml │ │ ├── pr7668_bad.ml │ │ ├── pr7712.ml │ │ ├── pr7937.ml │ │ ├── pr8548.ml │ │ ├── pr8548_split.ml │ │ ├── printing.ml │ │ ├── range.ml │ │ ├── range_intf.ml │ │ ├── ranged.ml │ │ ├── ranged_intf.ml │ │ ├── records.ml │ │ ├── scope_escape.ml │ │ ├── typecore_empty_polyvariant_error.compilers.reference │ │ ├── typecore_empty_polyvariant_error.ml │ │ ├── typecore_errors.ml │ │ ├── typecore_nolabel_errors.ml │ │ ├── typetexp_errors.ml │ │ ├── unique_names_in_unification.ml │ │ ├── variance.ml │ │ ├── variant.ml │ │ └── wellfounded.ml │ ├── typing-missing-cmi-2 │ │ ├── bar.mli │ │ ├── baz.ml │ │ ├── foo.mli │ │ ├── test.compilers.reference │ │ └── test.ml │ ├── typing-missing-cmi-3 │ │ ├── middle.ml │ │ ├── ocamltest │ │ ├── original.ml │ │ └── user.ml │ ├── typing-missing-cmi │ │ ├── a.ml │ │ ├── b.ml │ │ ├── c.ml │ │ ├── main.ml │ │ ├── main.ml.reference │ │ ├── main_ok.ml │ │ ├── subdir │ │ │ └── m.ml │ │ ├── test.compilers.reference │ │ └── test.ml │ ├── typing-modules-bugs │ │ ├── gatien_baron_20131019_ok.ml │ │ ├── pr5164_ok.ml │ │ ├── pr51_ok.ml │ │ ├── pr5663_ok.ml │ │ ├── pr5914_ok.ml │ │ ├── pr6240_ok.ml │ │ ├── pr6293_bad.compilers.reference │ │ ├── pr6293_bad.ml │ │ ├── pr6427_bad.compilers.reference │ │ ├── pr6427_bad.ml │ │ ├── pr6485_ok.ml │ │ ├── pr6513_ok.ml │ │ ├── pr6572_ok.ml │ │ ├── pr6651_ok.ml │ │ ├── pr6752_bad.compilers.reference │ │ ├── pr6752_bad.ml │ │ ├── pr6752_ok.ml │ │ ├── pr6899_first_bad.compilers.reference │ │ ├── pr6899_first_bad.ml │ │ ├── pr6899_ok.ml │ │ ├── pr6899_second_bad.compilers.reference │ │ ├── pr6899_second_bad.ml │ │ ├── pr6944_ok.ml │ │ ├── pr6954_ok.ml │ │ ├── pr6981_ok.ml │ │ ├── pr6982_ok.ml │ │ ├── pr6985_ok.ml │ │ ├── pr6992_bad.compilers.reference │ │ ├── pr6992_bad.ml │ │ ├── pr7036_ok.ml │ │ ├── pr7082_ok.ml │ │ ├── pr7112_bad.compilers.reference │ │ ├── pr7112_bad.ml │ │ ├── pr7112_ok.ml │ │ ├── pr7152_ok.ml │ │ ├── pr7182_ok.ml │ │ ├── pr7305_principal.ml │ │ ├── pr7321_ok.ml │ │ ├── pr7414_2_bad.compilers.reference │ │ ├── pr7414_2_bad.ml │ │ ├── pr7414_bad.compilers.reference │ │ ├── pr7414_bad.ml │ │ ├── pr7519_ok.ml │ │ ├── pr7601_ok.ml │ │ └── pr7601a_ok.ml │ ├── typing-modules │ │ ├── .gitattributes │ │ ├── Test.ml │ │ ├── aliases.ml │ │ ├── anonymous.ml │ │ ├── applicative_functor_type.ml │ │ ├── extension_constructors_errors_test.ml │ │ ├── firstclass.ml │ │ ├── generative.ml │ │ ├── illegal_permutation.ml │ │ ├── nondep.ml │ │ ├── nondep_private_abbrev.ml │ │ ├── normalize_path.ml │ │ ├── pr5911.ml │ │ ├── pr6394.ml │ │ ├── pr7207.ml │ │ ├── pr7348.ml │ │ ├── pr7726.ml │ │ ├── pr7787.ml │ │ ├── pr7818.ml │ │ ├── pr7851.ml │ │ ├── pr8810.ml │ │ ├── printing.ml │ │ ├── records_errors_test.ml │ │ ├── recursive.ml │ │ ├── unroll_private_abbrev.ml │ │ └── variants_errors_test.ml │ ├── typing-multifile │ │ ├── a.ml │ │ ├── b.ml │ │ ├── c.ml │ │ ├── d.mli │ │ ├── e.ml │ │ ├── f.ml │ │ ├── pr6372.ml │ │ ├── pr7325.ml │ │ ├── pr7563.ml │ │ └── pr9218.ml │ ├── typing-objects-bugs │ │ ├── pr3968_bad.compilers.reference │ │ ├── pr3968_bad.ml │ │ ├── pr4018_bad.compilers.reference │ │ ├── pr4018_bad.ml │ │ ├── pr4435_bad.compilers.reference │ │ ├── pr4435_bad.ml │ │ ├── pr4766_ok.ml │ │ ├── pr4824_ok.ml │ │ ├── pr4824a_bad.compilers.reference │ │ ├── pr4824a_bad.ml │ │ ├── pr5156_ok.ml │ │ ├── pr7284_bad.compilers.reference │ │ ├── pr7284_bad.ml │ │ ├── pr7293_ok.ml │ │ ├── woodyatt_ok.ml │ │ └── yamagata021012_ok.ml │ ├── typing-objects │ │ ├── Exemples.ml │ │ ├── Tests.ml │ │ ├── abstract_rows.ml │ │ ├── dummy.ml │ │ ├── errors.ml │ │ ├── open_in_classes.ml │ │ ├── pr5545.ml │ │ ├── pr5619_bad.ml │ │ ├── pr5858.ml │ │ ├── pr6123_bad.ml │ │ ├── pr6383.ml │ │ ├── pr6907_bad.ml │ │ ├── pr7711_ok.ml │ │ ├── self_cannot_be_closed.ml │ │ └── self_cannot_escape_pr7865.ml │ ├── typing-ocamlc-i │ │ ├── pervasives_leitmotiv.compilers.reference │ │ ├── pervasives_leitmotiv.ml │ │ ├── pr4791.compilers.reference │ │ ├── pr4791.ml │ │ ├── pr6323.compilers.reference │ │ ├── pr6323.ml │ │ ├── pr7402.compilers.reference │ │ ├── pr7402.ml │ │ ├── pr7620_bad.compilers.reference │ │ └── pr7620_bad.ml │ ├── typing-poly-bugs │ │ ├── pr5322_ok.ml │ │ ├── pr5673_ok.ml │ │ └── pr6922_ok.ml │ ├── typing-poly │ │ ├── error_messages.ml │ │ ├── poly.ml │ │ └── pr7636.ml │ ├── typing-polyvariants-bugs-2 │ │ ├── pr3918a.mli │ │ ├── pr3918b.mli │ │ ├── pr3918c.compilers.reference │ │ └── pr3918c.ml │ ├── typing-polyvariants-bugs │ │ ├── pr4775_ok.ml │ │ ├── pr4933_ok.ml │ │ ├── pr5057_ok.ml │ │ ├── pr5057a_bad.compilers.reference │ │ ├── pr5057a_bad.ml │ │ ├── pr7199_ok.ml │ │ ├── pr7824.ml │ │ └── privrowsabate_ok.ml │ ├── typing-private-bugs │ │ ├── pr5026_bad.compilers.reference │ │ ├── pr5026_bad.ml │ │ └── pr5469_ok.ml │ ├── typing-private │ │ ├── private.compilers.principal.reference │ │ ├── private.compilers.reference │ │ └── private.ml │ ├── typing-recmod │ │ ├── gpr1626.ml │ │ ├── t01bad.compilers.reference │ │ ├── t01bad.ml │ │ ├── t02bad.compilers.reference │ │ ├── t02bad.ml │ │ ├── t03ok.ml │ │ ├── t04bad.compilers.reference │ │ ├── t04bad.ml │ │ ├── t05bad.compilers.reference │ │ ├── t05bad.ml │ │ ├── t06ok.ml │ │ ├── t07bad.compilers.reference │ │ ├── t07bad.ml │ │ ├── t08bad.compilers.reference │ │ ├── t08bad.ml │ │ ├── t09bad.compilers.reference │ │ ├── t09bad.ml │ │ ├── t10ok.ml │ │ ├── t11bad.compilers.reference │ │ ├── t11bad.ml │ │ ├── t12bad.compilers.reference │ │ ├── t12bad.ml │ │ ├── t13ok.ml │ │ ├── t14bad.compilers.reference │ │ ├── t14bad.ml │ │ ├── t15bad.compilers.reference │ │ ├── t15bad.ml │ │ ├── t16ok.ml │ │ ├── t17ok.ml │ │ ├── t18ok.ml │ │ ├── t20ok.ml │ │ ├── t21ok.ml │ │ ├── t22ok.ml │ │ └── t22ok.mli │ ├── typing-recordarg │ │ ├── recordarg.ml │ │ └── recordarg.ocaml.reference │ ├── typing-rectypes-bugs │ │ ├── pr5343_bad.compilers.reference │ │ ├── pr5343_bad.ml │ │ ├── pr6174_bad.compilers.reference │ │ ├── pr6174_bad.ml │ │ ├── pr6870_bad.compilers.reference │ │ └── pr6870_bad.ml │ ├── typing-safe-linking │ │ ├── a.ml │ │ ├── b_bad.compilers.reference │ │ └── b_bad.ml │ ├── typing-shadowing-of-pervasives-submodules │ │ ├── largeFile.ml │ │ ├── redefine_largefile.ml │ │ ├── redefine_largefile.reference │ │ ├── redefine_largefile_top.compilers.reference │ │ └── redefine_largefile_top.ml │ ├── typing-short-paths │ │ ├── gpr1223.compilers.reference │ │ ├── gpr1223.ml │ │ ├── gpr1223_bar.mli │ │ ├── gpr1223_foo.mli │ │ ├── pr5918.compilers.reference │ │ ├── pr5918.ml │ │ ├── pr6836.compilers.reference │ │ ├── pr6836.ml │ │ ├── pr7543.compilers.reference │ │ ├── pr7543.ml │ │ ├── short-paths.compilers.reference │ │ └── short-paths.ml │ ├── typing-signatures │ │ ├── els.ml │ │ ├── els.ocaml.reference │ │ ├── pr6371.ml │ │ ├── pr6371.ocaml.reference │ │ ├── pr6672.ml │ │ └── pr6672.ocaml.reference │ ├── typing-sigsubst │ │ ├── mpr7852.mli │ │ ├── sig_local_aliases.ml │ │ ├── sig_local_aliases_syntax_errors.compilers.reference │ │ ├── sig_local_aliases_syntax_errors.ml │ │ ├── sigsubst.ml │ │ ├── test_functor.ml │ │ ├── test_loc_modtype_type_eq.ml │ │ ├── test_loc_modtype_type_subst.ml │ │ ├── test_loc_type_eq.ml │ │ ├── test_loc_type_subst.ml │ │ ├── test_locations.compilers.reference │ │ └── test_locations.ml │ ├── typing-typeparam │ │ ├── newtype.ml │ │ └── newtype.ocaml.reference │ ├── typing-unboxed-types │ │ ├── test.ml │ │ ├── test_flat.ml │ │ └── test_no_flat.ml │ ├── typing-unboxed │ │ ├── test.ml │ │ └── test.ocaml.reference │ ├── typing-warnings │ │ ├── ambiguous_guarded_disjunction.ml │ │ ├── application.ml │ │ ├── coercions.ml │ │ ├── exhaustiveness.ml │ │ ├── never_returns.ml │ │ ├── open_warnings.ml │ │ ├── pr5892.ml │ │ ├── pr6587.ml │ │ ├── pr6872.ml │ │ ├── pr7085.ml │ │ ├── pr7115.ml │ │ ├── pr7261.compilers.reference │ │ ├── pr7261.ml │ │ ├── pr7297.compilers.reference │ │ ├── pr7297.ml │ │ ├── pr7553.ml │ │ ├── records.ml │ │ ├── unused_functor_parameter.ml │ │ ├── unused_rec.ml │ │ └── unused_types.ml │ ├── unboxed-primitive-args │ │ ├── README │ │ ├── common.ml │ │ ├── common.mli │ │ ├── gen_test.ml │ │ ├── test.ml │ │ ├── test.reference │ │ ├── test_common.c │ │ └── test_common.h │ ├── unwind │ │ ├── README │ │ ├── check-linker-version.sh │ │ ├── driver.ml │ │ ├── mylib.ml │ │ ├── mylib.mli │ │ └── stack_walker.c │ ├── utils │ │ ├── edit_distance.ml │ │ ├── edit_distance.reference │ │ ├── overflow_detection.ml │ │ ├── overflow_detection.reference │ │ ├── test_strongly_connected_components.ml │ │ └── test_strongly_connected_components.reference │ ├── warnings │ │ ├── deprecated_module.compilers.reference │ │ ├── deprecated_module.ml │ │ ├── deprecated_module.mli │ │ ├── deprecated_module_assigment.compilers.reference │ │ ├── deprecated_module_assigment.ml │ │ ├── deprecated_module_use.compilers.reference │ │ ├── deprecated_module_use.ml │ │ ├── module_without_cmx.mli │ │ ├── w01.compilers.reference │ │ ├── w01.ml │ │ ├── w03.compilers.reference │ │ ├── w03.ml │ │ ├── w04.compilers.reference │ │ ├── w04.ml │ │ ├── w04_failure.compilers.reference │ │ ├── w04_failure.ml │ │ ├── w06.compilers.reference │ │ ├── w06.ml │ │ ├── w32.compilers.reference │ │ ├── w32.ml │ │ ├── w32.mli │ │ ├── w32b.compilers.reference │ │ ├── w32b.ml │ │ ├── w33.compilers.reference │ │ ├── w33.ml │ │ ├── w45.compilers.reference │ │ ├── w45.ml │ │ ├── w47_inline.compilers.reference │ │ ├── w47_inline.ml │ │ ├── w50.compilers.reference │ │ ├── w50.ml │ │ ├── w51.compilers.reference │ │ ├── w51.ml │ │ ├── w51_bis.compilers.reference │ │ ├── w51_bis.ml │ │ ├── w52.ml │ │ ├── w53.compilers.reference │ │ ├── w53.ml │ │ ├── w54.compilers.reference │ │ ├── w54.ml │ │ ├── w55.flambda.reference │ │ ├── w55.ml │ │ ├── w55.native.reference │ │ ├── w58.ml │ │ ├── w58.native.reference │ │ ├── w59.flambda.reference │ │ ├── w59.ml │ │ ├── w60.compilers.reference │ │ ├── w60.ml │ │ └── w60.mli │ └── win-unicode │ │ ├── mltest.compilers.reference │ │ └── mltest.ml └── tools │ ├── Makefile │ ├── asmgen_amd64.S │ ├── asmgen_arm.S │ ├── asmgen_arm64.S │ ├── asmgen_i386.S │ ├── asmgen_i386nt.asm │ ├── asmgen_power.S │ ├── asmgen_s390x.S │ ├── codegen_main.ml │ ├── expect_test.ml │ ├── lexcmm.mli │ ├── lexcmm.mll │ ├── parsecmm.mly │ ├── parsecmmaux.ml │ └── parsecmmaux.mli ├── tools ├── .depend ├── Makefile ├── caml_tex.ml ├── check-parser-uptodate-or-warn.sh ├── check-symbol-names ├── check-typo ├── check-typo-since ├── checkstack.c ├── ci │ ├── appveyor │ │ ├── appveyor_build.cmd │ │ └── appveyor_build.sh │ ├── inria │ │ ├── bootstrap │ │ ├── extra-checks │ │ ├── lsan-suppr.txt │ │ ├── main │ │ ├── other-configs │ │ └── remove-sinh-primitive.patch │ └── travis │ │ └── travis-ci.sh ├── cmpbyt.ml ├── cmt2annot.ml ├── cvt_emit.mll ├── dumpobj.ml ├── dune ├── eqparsetree.ml ├── gdb-macros ├── git-dev-options.sh ├── lintapidiff.ml ├── magic ├── make-package-macosx ├── make-version-header.sh ├── make_opcodes.mll ├── mantis2gh_stripped.csv ├── markdown-add-pr-links.sh ├── msvs-promote-path ├── objinfo.ml ├── objinfo_helper.c ├── ocaml-instr-graph ├── ocaml-instr-report ├── ocaml-objcopy-macosx ├── ocamlcp.ml ├── ocamldep.ml ├── ocamlmklib.ml ├── ocamlmktop.ml ├── ocamloptp.ml ├── ocamlprof.ml ├── ocamlsize ├── pre-commit-githook ├── primreq.ml ├── profiling.ml ├── profiling.mli ├── read_cmt.ml ├── release-checklist └── stripdebug.ml ├── toplevel ├── dune ├── expunge.ml ├── genprintval.ml ├── genprintval.mli ├── opttopdirs.ml ├── opttopdirs.mli ├── opttoploop.ml ├── opttoploop.mli ├── opttopmain.ml ├── opttopmain.mli ├── opttopstart.ml ├── topdirs.ml ├── topdirs.mli ├── toploop.ml ├── toploop.mli ├── topmain.ml ├── topmain.mli ├── topstart.ml ├── trace.ml └── trace.mli ├── typing ├── HACKING.adoc ├── TODO.md ├── annot.mli ├── btype.ml ├── btype.mli ├── ctype.ml ├── ctype.mli ├── datarepr.ml ├── datarepr.mli ├── env.ml ├── env.mli ├── envaux.ml ├── envaux.mli ├── ident.ml ├── ident.mli ├── includeclass.ml ├── includeclass.mli ├── includecore.ml ├── includecore.mli ├── includemod.ml ├── includemod.mli ├── mtype.ml ├── mtype.mli ├── oprint.ml ├── oprint.mli ├── outcometree.mli ├── parmatch.ml ├── parmatch.mli ├── path.ml ├── path.mli ├── persistent_env.ml ├── persistent_env.mli ├── predef.ml ├── predef.mli ├── primitive.ml ├── primitive.mli ├── printpat.ml ├── printpat.mli ├── printtyp.ml ├── printtyp.mli ├── printtyped.ml ├── printtyped.mli ├── rec_check.ml ├── rec_check.mli ├── stypes.ml ├── stypes.mli ├── subst.ml ├── subst.mli ├── tast_iterator.ml ├── tast_iterator.mli ├── tast_mapper.ml ├── tast_mapper.mli ├── type_immediacy.ml ├── type_immediacy.mli ├── typeclass.ml ├── typeclass.mli ├── typecore.ml ├── typecore.mli ├── typedecl.ml ├── typedecl.mli ├── typedecl_immediacy.ml ├── typedecl_immediacy.mli ├── typedecl_properties.ml ├── typedecl_properties.mli ├── typedecl_unboxed.ml ├── typedecl_unboxed.mli ├── typedecl_variance.ml ├── typedecl_variance.mli ├── typedtree.ml ├── typedtree.mli ├── typemod.ml ├── typemod.mli ├── typeopt.ml ├── typeopt.mli ├── types.ml ├── types.mli ├── typetexp.ml ├── typetexp.mli ├── untypeast.ml └── untypeast.mli ├── utils ├── HACKING.adoc ├── Makefile ├── arg_helper.ml ├── arg_helper.mli ├── build_path_prefix_map.ml ├── build_path_prefix_map.mli ├── ccomp.ml ├── ccomp.mli ├── clflags.ml ├── clflags.mli ├── config.mli ├── config.mlp ├── consistbl.ml ├── consistbl.mli ├── domainstate.ml.c ├── domainstate.mli.c ├── dune ├── identifiable.ml ├── identifiable.mli ├── int_replace_polymorphic_compare.ml ├── int_replace_polymorphic_compare.mli ├── load_path.ml ├── load_path.mli ├── misc.ml ├── misc.mli ├── numbers.ml ├── numbers.mli ├── profile.ml ├── profile.mli ├── strongly_connected_components.ml ├── strongly_connected_components.mli ├── targetint.ml ├── targetint.mli ├── terminfo.ml ├── terminfo.mli ├── warnings.ml └── warnings.mli └── yacc ├── Makefile ├── closure.c ├── defs.h ├── error.c ├── lalr.c ├── lr0.c ├── main.c ├── mkpar.c ├── output.c ├── reader.c ├── skeleton.c ├── symtab.c ├── verbose.c ├── warshall.c ├── wstr.c └── yacc /.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.depend -------------------------------------------------------------------------------- /.depend.menhir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.depend.menhir -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.mailmap -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- 1 | match_clause=4 2 | strict_with=auto 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/.travis.yml -------------------------------------------------------------------------------- /BOOTSTRAP.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/BOOTSTRAP.adoc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Changes -------------------------------------------------------------------------------- /HACKING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/HACKING.adoc -------------------------------------------------------------------------------- /INSTALL.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/INSTALL.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.best_binaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.best_binaries -------------------------------------------------------------------------------- /Makefile.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.common.in -------------------------------------------------------------------------------- /Makefile.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.config.in -------------------------------------------------------------------------------- /Makefile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.dev -------------------------------------------------------------------------------- /Makefile.menhir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.menhir -------------------------------------------------------------------------------- /Makefile.tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/Makefile.tools -------------------------------------------------------------------------------- /News: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/News -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/README.adoc -------------------------------------------------------------------------------- /README.win32.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/README.win32.adoc -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/VERSION -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/appveyor.yml -------------------------------------------------------------------------------- /asmcomp/CSEgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/CSEgen.ml -------------------------------------------------------------------------------- /asmcomp/CSEgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/CSEgen.mli -------------------------------------------------------------------------------- /asmcomp/amd64/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/amd64/CSE.ml -------------------------------------------------------------------------------- /asmcomp/amd64/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/amd64/NOTES.md -------------------------------------------------------------------------------- /asmcomp/amd64/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/amd64/arch.ml -------------------------------------------------------------------------------- /asmcomp/amd64/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/amd64/emit.mlp -------------------------------------------------------------------------------- /asmcomp/amd64/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/amd64/proc.ml -------------------------------------------------------------------------------- /asmcomp/arm/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/CSE.ml -------------------------------------------------------------------------------- /asmcomp/arm/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/NOTES.md -------------------------------------------------------------------------------- /asmcomp/arm/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/arch.ml -------------------------------------------------------------------------------- /asmcomp/arm/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/emit.mlp -------------------------------------------------------------------------------- /asmcomp/arm/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/proc.ml -------------------------------------------------------------------------------- /asmcomp/arm/reload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm/reload.ml -------------------------------------------------------------------------------- /asmcomp/arm64/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm64/CSE.ml -------------------------------------------------------------------------------- /asmcomp/arm64/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm64/NOTES.md -------------------------------------------------------------------------------- /asmcomp/arm64/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm64/arch.ml -------------------------------------------------------------------------------- /asmcomp/arm64/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm64/emit.mlp -------------------------------------------------------------------------------- /asmcomp/arm64/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/arm64/proc.ml -------------------------------------------------------------------------------- /asmcomp/asmgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/asmgen.ml -------------------------------------------------------------------------------- /asmcomp/asmgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/asmgen.mli -------------------------------------------------------------------------------- /asmcomp/asmlink.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/asmlink.ml -------------------------------------------------------------------------------- /asmcomp/asmlink.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/asmlink.mli -------------------------------------------------------------------------------- /asmcomp/asmpackager.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/asmpackager.ml -------------------------------------------------------------------------------- /asmcomp/cmm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/cmm.ml -------------------------------------------------------------------------------- /asmcomp/cmm.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/cmm.mli -------------------------------------------------------------------------------- /asmcomp/cmm_helpers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/cmm_helpers.ml -------------------------------------------------------------------------------- /asmcomp/cmmgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/cmmgen.ml -------------------------------------------------------------------------------- /asmcomp/cmmgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/cmmgen.mli -------------------------------------------------------------------------------- /asmcomp/coloring.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/coloring.ml -------------------------------------------------------------------------------- /asmcomp/coloring.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/coloring.mli -------------------------------------------------------------------------------- /asmcomp/comballoc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/comballoc.ml -------------------------------------------------------------------------------- /asmcomp/comballoc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/comballoc.mli -------------------------------------------------------------------------------- /asmcomp/deadcode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/deadcode.ml -------------------------------------------------------------------------------- /asmcomp/deadcode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/deadcode.mli -------------------------------------------------------------------------------- /asmcomp/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/dune -------------------------------------------------------------------------------- /asmcomp/emit.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/emit.mli -------------------------------------------------------------------------------- /asmcomp/emitaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/emitaux.ml -------------------------------------------------------------------------------- /asmcomp/emitaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/emitaux.mli -------------------------------------------------------------------------------- /asmcomp/i386/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/CSE.ml -------------------------------------------------------------------------------- /asmcomp/i386/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/NOTES.md -------------------------------------------------------------------------------- /asmcomp/i386/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/arch.ml -------------------------------------------------------------------------------- /asmcomp/i386/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/emit.mlp -------------------------------------------------------------------------------- /asmcomp/i386/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/proc.ml -------------------------------------------------------------------------------- /asmcomp/i386/reload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/i386/reload.ml -------------------------------------------------------------------------------- /asmcomp/interf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/interf.ml -------------------------------------------------------------------------------- /asmcomp/interf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/interf.mli -------------------------------------------------------------------------------- /asmcomp/interval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/interval.ml -------------------------------------------------------------------------------- /asmcomp/interval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/interval.mli -------------------------------------------------------------------------------- /asmcomp/linear.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linear.ml -------------------------------------------------------------------------------- /asmcomp/linear.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linear.mli -------------------------------------------------------------------------------- /asmcomp/linearize.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linearize.ml -------------------------------------------------------------------------------- /asmcomp/linearize.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linearize.mli -------------------------------------------------------------------------------- /asmcomp/linscan.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linscan.ml -------------------------------------------------------------------------------- /asmcomp/linscan.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/linscan.mli -------------------------------------------------------------------------------- /asmcomp/liveness.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/liveness.ml -------------------------------------------------------------------------------- /asmcomp/liveness.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/liveness.mli -------------------------------------------------------------------------------- /asmcomp/mach.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/mach.ml -------------------------------------------------------------------------------- /asmcomp/mach.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/mach.mli -------------------------------------------------------------------------------- /asmcomp/power/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/power/CSE.ml -------------------------------------------------------------------------------- /asmcomp/power/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/power/NOTES.md -------------------------------------------------------------------------------- /asmcomp/power/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/power/arch.ml -------------------------------------------------------------------------------- /asmcomp/power/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/power/emit.mlp -------------------------------------------------------------------------------- /asmcomp/power/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/power/proc.ml -------------------------------------------------------------------------------- /asmcomp/printcmm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/printcmm.ml -------------------------------------------------------------------------------- /asmcomp/printcmm.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/printcmm.mli -------------------------------------------------------------------------------- /asmcomp/printlinear.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/printlinear.ml -------------------------------------------------------------------------------- /asmcomp/printmach.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/printmach.ml -------------------------------------------------------------------------------- /asmcomp/printmach.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/printmach.mli -------------------------------------------------------------------------------- /asmcomp/proc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/proc.mli -------------------------------------------------------------------------------- /asmcomp/reg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/reg.ml -------------------------------------------------------------------------------- /asmcomp/reg.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/reg.mli -------------------------------------------------------------------------------- /asmcomp/reload.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/reload.mli -------------------------------------------------------------------------------- /asmcomp/reloadgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/reloadgen.ml -------------------------------------------------------------------------------- /asmcomp/reloadgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/reloadgen.mli -------------------------------------------------------------------------------- /asmcomp/s390x/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/s390x/CSE.ml -------------------------------------------------------------------------------- /asmcomp/s390x/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/s390x/NOTES.md -------------------------------------------------------------------------------- /asmcomp/s390x/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/s390x/arch.ml -------------------------------------------------------------------------------- /asmcomp/s390x/emit.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/s390x/emit.mlp -------------------------------------------------------------------------------- /asmcomp/s390x/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/s390x/proc.ml -------------------------------------------------------------------------------- /asmcomp/schedgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/schedgen.ml -------------------------------------------------------------------------------- /asmcomp/schedgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/schedgen.mli -------------------------------------------------------------------------------- /asmcomp/scheduling.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/scheduling.mli -------------------------------------------------------------------------------- /asmcomp/selectgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/selectgen.ml -------------------------------------------------------------------------------- /asmcomp/selectgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/selectgen.mli -------------------------------------------------------------------------------- /asmcomp/selection.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/selection.mli -------------------------------------------------------------------------------- /asmcomp/spill.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/spill.ml -------------------------------------------------------------------------------- /asmcomp/spill.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/spill.mli -------------------------------------------------------------------------------- /asmcomp/split.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/split.ml -------------------------------------------------------------------------------- /asmcomp/split.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/split.mli -------------------------------------------------------------------------------- /asmcomp/strmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/strmatch.ml -------------------------------------------------------------------------------- /asmcomp/strmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/strmatch.mli -------------------------------------------------------------------------------- /asmcomp/x86_ast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_ast.mli -------------------------------------------------------------------------------- /asmcomp/x86_dsl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_dsl.ml -------------------------------------------------------------------------------- /asmcomp/x86_dsl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_dsl.mli -------------------------------------------------------------------------------- /asmcomp/x86_gas.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_gas.ml -------------------------------------------------------------------------------- /asmcomp/x86_gas.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_gas.mli -------------------------------------------------------------------------------- /asmcomp/x86_masm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_masm.ml -------------------------------------------------------------------------------- /asmcomp/x86_masm.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_masm.mli -------------------------------------------------------------------------------- /asmcomp/x86_proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_proc.ml -------------------------------------------------------------------------------- /asmcomp/x86_proc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/x86_proc.mli -------------------------------------------------------------------------------- /asmcomp/xtensa/CSE.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/xtensa/CSE.ml -------------------------------------------------------------------------------- /asmcomp/xtensa/arch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/xtensa/arch.ml -------------------------------------------------------------------------------- /asmcomp/xtensa/proc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/asmcomp/xtensa/proc.ml -------------------------------------------------------------------------------- /autogen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/autogen -------------------------------------------------------------------------------- /boot/menhir/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/boot/menhir/parser.ml -------------------------------------------------------------------------------- /boot/menhir/parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/boot/menhir/parser.mli -------------------------------------------------------------------------------- /boot/ocamlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/boot/ocamlc -------------------------------------------------------------------------------- /boot/ocamllex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/boot/ocamllex -------------------------------------------------------------------------------- /bytecomp/bytegen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/bytegen.ml -------------------------------------------------------------------------------- /bytecomp/bytegen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/bytegen.mli -------------------------------------------------------------------------------- /bytecomp/bytelink.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/bytelink.ml -------------------------------------------------------------------------------- /bytecomp/bytelink.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/bytelink.mli -------------------------------------------------------------------------------- /bytecomp/dll.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/dll.ml -------------------------------------------------------------------------------- /bytecomp/dll.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/dll.mli -------------------------------------------------------------------------------- /bytecomp/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/dune -------------------------------------------------------------------------------- /bytecomp/emitcode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/emitcode.ml -------------------------------------------------------------------------------- /bytecomp/emitcode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/emitcode.mli -------------------------------------------------------------------------------- /bytecomp/instruct.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/instruct.ml -------------------------------------------------------------------------------- /bytecomp/instruct.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/instruct.mli -------------------------------------------------------------------------------- /bytecomp/meta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/meta.ml -------------------------------------------------------------------------------- /bytecomp/meta.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/meta.mli -------------------------------------------------------------------------------- /bytecomp/printinstr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/printinstr.ml -------------------------------------------------------------------------------- /bytecomp/symtable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/symtable.ml -------------------------------------------------------------------------------- /bytecomp/symtable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/bytecomp/symtable.mli -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/configure.ac -------------------------------------------------------------------------------- /debugger/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/.depend -------------------------------------------------------------------------------- /debugger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/Makefile -------------------------------------------------------------------------------- /debugger/debugcom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/debugcom.ml -------------------------------------------------------------------------------- /debugger/debugcom.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/debugcom.mli -------------------------------------------------------------------------------- /debugger/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/dune -------------------------------------------------------------------------------- /debugger/eval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/eval.ml -------------------------------------------------------------------------------- /debugger/eval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/eval.mli -------------------------------------------------------------------------------- /debugger/events.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/events.ml -------------------------------------------------------------------------------- /debugger/events.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/events.mli -------------------------------------------------------------------------------- /debugger/exec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/exec.ml -------------------------------------------------------------------------------- /debugger/exec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/exec.mli -------------------------------------------------------------------------------- /debugger/frames.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/frames.ml -------------------------------------------------------------------------------- /debugger/frames.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/frames.mli -------------------------------------------------------------------------------- /debugger/history.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/history.ml -------------------------------------------------------------------------------- /debugger/history.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/history.mli -------------------------------------------------------------------------------- /debugger/int64ops.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/int64ops.ml -------------------------------------------------------------------------------- /debugger/int64ops.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/int64ops.mli -------------------------------------------------------------------------------- /debugger/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/lexer.mli -------------------------------------------------------------------------------- /debugger/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/lexer.mll -------------------------------------------------------------------------------- /debugger/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/main.ml -------------------------------------------------------------------------------- /debugger/parameters.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/parameters.ml -------------------------------------------------------------------------------- /debugger/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/parser.mly -------------------------------------------------------------------------------- /debugger/pos.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/pos.ml -------------------------------------------------------------------------------- /debugger/pos.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/pos.mli -------------------------------------------------------------------------------- /debugger/primitives.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/primitives.ml -------------------------------------------------------------------------------- /debugger/printval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/printval.ml -------------------------------------------------------------------------------- /debugger/printval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/printval.mli -------------------------------------------------------------------------------- /debugger/question.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/question.ml -------------------------------------------------------------------------------- /debugger/question.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/question.mli -------------------------------------------------------------------------------- /debugger/source.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/source.ml -------------------------------------------------------------------------------- /debugger/source.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/source.mli -------------------------------------------------------------------------------- /debugger/symbols.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/symbols.ml -------------------------------------------------------------------------------- /debugger/symbols.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/symbols.mli -------------------------------------------------------------------------------- /debugger/unix_tools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/debugger/unix_tools.ml -------------------------------------------------------------------------------- /driver/compenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compenv.ml -------------------------------------------------------------------------------- /driver/compenv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compenv.mli -------------------------------------------------------------------------------- /driver/compile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compile.ml -------------------------------------------------------------------------------- /driver/compile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compile.mli -------------------------------------------------------------------------------- /driver/compmisc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compmisc.ml -------------------------------------------------------------------------------- /driver/compmisc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/compmisc.mli -------------------------------------------------------------------------------- /driver/errors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/errors.ml -------------------------------------------------------------------------------- /driver/errors.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/errors.mli -------------------------------------------------------------------------------- /driver/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/main.ml -------------------------------------------------------------------------------- /driver/main.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/main.mli -------------------------------------------------------------------------------- /driver/main_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/main_args.ml -------------------------------------------------------------------------------- /driver/main_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/main_args.mli -------------------------------------------------------------------------------- /driver/makedepend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/makedepend.ml -------------------------------------------------------------------------------- /driver/makedepend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/makedepend.mli -------------------------------------------------------------------------------- /driver/optcompile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/optcompile.ml -------------------------------------------------------------------------------- /driver/optcompile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/optcompile.mli -------------------------------------------------------------------------------- /driver/opterrors.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/opterrors.ml -------------------------------------------------------------------------------- /driver/opterrors.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/opterrors.mli -------------------------------------------------------------------------------- /driver/optmain.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/optmain.ml -------------------------------------------------------------------------------- /driver/optmain.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/optmain.mli -------------------------------------------------------------------------------- /driver/pparse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/pparse.ml -------------------------------------------------------------------------------- /driver/pparse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/driver/pparse.mli -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/dune-project -------------------------------------------------------------------------------- /esp32-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/esp32-install.sh -------------------------------------------------------------------------------- /esp32.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/esp32.conf.in -------------------------------------------------------------------------------- /lambda/.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/.ocamlformat -------------------------------------------------------------------------------- /lambda/.ocamlformat-enable: -------------------------------------------------------------------------------- 1 | matching.ml 2 | -------------------------------------------------------------------------------- /lambda/debuginfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/debuginfo.ml -------------------------------------------------------------------------------- /lambda/debuginfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/debuginfo.mli -------------------------------------------------------------------------------- /lambda/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/dune -------------------------------------------------------------------------------- /lambda/lambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/lambda.ml -------------------------------------------------------------------------------- /lambda/lambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/lambda.mli -------------------------------------------------------------------------------- /lambda/matching.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/matching.ml -------------------------------------------------------------------------------- /lambda/matching.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/matching.mli -------------------------------------------------------------------------------- /lambda/printlambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/printlambda.ml -------------------------------------------------------------------------------- /lambda/printlambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/printlambda.mli -------------------------------------------------------------------------------- /lambda/runtimedef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/runtimedef.mli -------------------------------------------------------------------------------- /lambda/simplif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/simplif.ml -------------------------------------------------------------------------------- /lambda/simplif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/simplif.mli -------------------------------------------------------------------------------- /lambda/switch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/switch.ml -------------------------------------------------------------------------------- /lambda/switch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/switch.mli -------------------------------------------------------------------------------- /lambda/translclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translclass.ml -------------------------------------------------------------------------------- /lambda/translclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translclass.mli -------------------------------------------------------------------------------- /lambda/translcore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translcore.ml -------------------------------------------------------------------------------- /lambda/translcore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translcore.mli -------------------------------------------------------------------------------- /lambda/translmod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translmod.ml -------------------------------------------------------------------------------- /lambda/translmod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translmod.mli -------------------------------------------------------------------------------- /lambda/translobj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translobj.ml -------------------------------------------------------------------------------- /lambda/translobj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translobj.mli -------------------------------------------------------------------------------- /lambda/translprim.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translprim.ml -------------------------------------------------------------------------------- /lambda/translprim.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lambda/translprim.mli -------------------------------------------------------------------------------- /lex/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/.depend -------------------------------------------------------------------------------- /lex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/Makefile -------------------------------------------------------------------------------- /lex/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/common.ml -------------------------------------------------------------------------------- /lex/common.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/common.mli -------------------------------------------------------------------------------- /lex/compact.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/compact.ml -------------------------------------------------------------------------------- /lex/compact.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/compact.mli -------------------------------------------------------------------------------- /lex/cset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/cset.ml -------------------------------------------------------------------------------- /lex/cset.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/cset.mli -------------------------------------------------------------------------------- /lex/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/lexer.mli -------------------------------------------------------------------------------- /lex/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/lexer.mll -------------------------------------------------------------------------------- /lex/lexgen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/lexgen.ml -------------------------------------------------------------------------------- /lex/lexgen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/lexgen.mli -------------------------------------------------------------------------------- /lex/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/main.ml -------------------------------------------------------------------------------- /lex/output.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/output.ml -------------------------------------------------------------------------------- /lex/output.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/output.mli -------------------------------------------------------------------------------- /lex/outputbis.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/outputbis.ml -------------------------------------------------------------------------------- /lex/outputbis.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/outputbis.mli -------------------------------------------------------------------------------- /lex/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/parser.mly -------------------------------------------------------------------------------- /lex/syntax.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/syntax.ml -------------------------------------------------------------------------------- /lex/syntax.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/syntax.mli -------------------------------------------------------------------------------- /lex/table.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/table.ml -------------------------------------------------------------------------------- /lex/table.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/lex/table.mli -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/ocaml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocaml.m -------------------------------------------------------------------------------- /man/ocamlc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlc.m -------------------------------------------------------------------------------- /man/ocamlcp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlcp.m -------------------------------------------------------------------------------- /man/ocamldebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamldebug.m -------------------------------------------------------------------------------- /man/ocamldep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamldep.m -------------------------------------------------------------------------------- /man/ocamldoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamldoc.m -------------------------------------------------------------------------------- /man/ocamllex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamllex.m -------------------------------------------------------------------------------- /man/ocamlmktop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlmktop.m -------------------------------------------------------------------------------- /man/ocamlopt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlopt.m -------------------------------------------------------------------------------- /man/ocamlprof.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlprof.m -------------------------------------------------------------------------------- /man/ocamlrun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlrun.m -------------------------------------------------------------------------------- /man/ocamlyacc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/man/ocamlyacc.m -------------------------------------------------------------------------------- /manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/Makefile -------------------------------------------------------------------------------- /manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/README.md -------------------------------------------------------------------------------- /manual/manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/manual/Makefile -------------------------------------------------------------------------------- /manual/styles/doc.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/styles/doc.tfm -------------------------------------------------------------------------------- /manual/styles/html.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/styles/html.sty -------------------------------------------------------------------------------- /manual/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /cross-reference-checker 2 | -------------------------------------------------------------------------------- /manual/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/tests/Makefile -------------------------------------------------------------------------------- /manual/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/tests/README.md -------------------------------------------------------------------------------- /manual/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/manual/tools/Makefile -------------------------------------------------------------------------------- /middle_end/clambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/middle_end/clambda.ml -------------------------------------------------------------------------------- /middle_end/clambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/middle_end/clambda.mli -------------------------------------------------------------------------------- /middle_end/symbol.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/middle_end/symbol.ml -------------------------------------------------------------------------------- /middle_end/symbol.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/middle_end/symbol.mli -------------------------------------------------------------------------------- /middle_end/variable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/middle_end/variable.ml -------------------------------------------------------------------------------- /ocaml-esp32.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocaml-esp32.opam -------------------------------------------------------------------------------- /ocamldoc/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/.depend -------------------------------------------------------------------------------- /ocamldoc/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/Changes.txt -------------------------------------------------------------------------------- /ocamldoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/Makefile -------------------------------------------------------------------------------- /ocamldoc/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/dune -------------------------------------------------------------------------------- /ocamldoc/ocamldoc.hva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/ocamldoc.hva -------------------------------------------------------------------------------- /ocamldoc/ocamldoc.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/ocamldoc.sty -------------------------------------------------------------------------------- /ocamldoc/odoc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_args.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_args.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_ast.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_ast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_ast.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_class.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_class.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_cross.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_cross.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_dep.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_dep.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_dot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_dot.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_env.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_env.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_gen.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_gen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_gen.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_html.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_html.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_info.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_info.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_info.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_info.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_latex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_latex.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_man.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_man.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_merge.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_merge.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_misc.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_misc.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_name.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_name.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_name.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_name.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_print.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_scan.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_scan.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_sig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_sig.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_sig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_sig.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_str.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_str.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_str.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_str.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_test.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_texi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_texi.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_text.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_text.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_text.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_text.mli -------------------------------------------------------------------------------- /ocamldoc/odoc_type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_type.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_types.ml -------------------------------------------------------------------------------- /ocamldoc/odoc_value.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/odoc_value.ml -------------------------------------------------------------------------------- /ocamldoc/remove_DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamldoc/remove_DEBUG -------------------------------------------------------------------------------- /ocamltest/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/.depend -------------------------------------------------------------------------------- /ocamltest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/Makefile -------------------------------------------------------------------------------- /ocamltest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/README -------------------------------------------------------------------------------- /ocamltest/actions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/actions.ml -------------------------------------------------------------------------------- /ocamltest/actions.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/actions.mli -------------------------------------------------------------------------------- /ocamltest/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/dune -------------------------------------------------------------------------------- /ocamltest/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/main.ml -------------------------------------------------------------------------------- /ocamltest/main.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/main.mli -------------------------------------------------------------------------------- /ocamltest/options.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/options.ml -------------------------------------------------------------------------------- /ocamltest/options.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/options.mli -------------------------------------------------------------------------------- /ocamltest/result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/result.ml -------------------------------------------------------------------------------- /ocamltest/result.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/result.mli -------------------------------------------------------------------------------- /ocamltest/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/run.h -------------------------------------------------------------------------------- /ocamltest/run_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/run_common.h -------------------------------------------------------------------------------- /ocamltest/run_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/run_stubs.c -------------------------------------------------------------------------------- /ocamltest/run_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/run_unix.c -------------------------------------------------------------------------------- /ocamltest/run_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/run_win32.c -------------------------------------------------------------------------------- /ocamltest/strace.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/strace.ml -------------------------------------------------------------------------------- /ocamltest/strace.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/strace.mli -------------------------------------------------------------------------------- /ocamltest/tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/tests.ml -------------------------------------------------------------------------------- /ocamltest/tests.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/tests.mli -------------------------------------------------------------------------------- /ocamltest/tsl_ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/tsl_ast.ml -------------------------------------------------------------------------------- /ocamltest/tsl_ast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/tsl_ast.mli -------------------------------------------------------------------------------- /ocamltest/variables.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/ocamltest/variables.ml -------------------------------------------------------------------------------- /otherlibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/Makefile -------------------------------------------------------------------------------- /otherlibs/bigarray/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otherlibs/dynlink/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/dynlink/dune -------------------------------------------------------------------------------- /otherlibs/str/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/str/.depend -------------------------------------------------------------------------------- /otherlibs/str/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/str/Makefile -------------------------------------------------------------------------------- /otherlibs/str/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/str/dune -------------------------------------------------------------------------------- /otherlibs/str/str.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/str/str.ml -------------------------------------------------------------------------------- /otherlibs/str/str.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/str/str.mli -------------------------------------------------------------------------------- /otherlibs/unix/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/.depend -------------------------------------------------------------------------------- /otherlibs/unix/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/alarm.c -------------------------------------------------------------------------------- /otherlibs/unix/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/bind.c -------------------------------------------------------------------------------- /otherlibs/unix/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/chdir.c -------------------------------------------------------------------------------- /otherlibs/unix/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/chmod.c -------------------------------------------------------------------------------- /otherlibs/unix/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/chown.c -------------------------------------------------------------------------------- /otherlibs/unix/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/close.c -------------------------------------------------------------------------------- /otherlibs/unix/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/dune -------------------------------------------------------------------------------- /otherlibs/unix/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/dup.c -------------------------------------------------------------------------------- /otherlibs/unix/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/otherlibs/unix/dup2.c -------------------------------------------------------------------------------- /parsing/VIPs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/VIPs.md -------------------------------------------------------------------------------- /parsing/depend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/depend.ml -------------------------------------------------------------------------------- /parsing/depend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/depend.mli -------------------------------------------------------------------------------- /parsing/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/dune -------------------------------------------------------------------------------- /parsing/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/lexer.mli -------------------------------------------------------------------------------- /parsing/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/lexer.mll -------------------------------------------------------------------------------- /parsing/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/location.ml -------------------------------------------------------------------------------- /parsing/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/parse.ml -------------------------------------------------------------------------------- /parsing/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/parse.mli -------------------------------------------------------------------------------- /parsing/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/parser.mly -------------------------------------------------------------------------------- /parsing/printast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/parsing/printast.ml -------------------------------------------------------------------------------- /runtime/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/.depend -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/afl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/afl.c -------------------------------------------------------------------------------- /runtime/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/alloc.c -------------------------------------------------------------------------------- /runtime/amd64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/amd64.S -------------------------------------------------------------------------------- /runtime/amd64nt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/amd64nt.asm -------------------------------------------------------------------------------- /runtime/arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/arm.S -------------------------------------------------------------------------------- /runtime/arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/arm64.S -------------------------------------------------------------------------------- /runtime/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/array.c -------------------------------------------------------------------------------- /runtime/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/backtrace.c -------------------------------------------------------------------------------- /runtime/bigarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/bigarray.c -------------------------------------------------------------------------------- /runtime/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/callback.c -------------------------------------------------------------------------------- /runtime/caml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/dune -------------------------------------------------------------------------------- /runtime/caml/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/exec.h -------------------------------------------------------------------------------- /runtime/caml/fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/fail.h -------------------------------------------------------------------------------- /runtime/caml/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/gc.h -------------------------------------------------------------------------------- /runtime/caml/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/hash.h -------------------------------------------------------------------------------- /runtime/caml/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/io.h -------------------------------------------------------------------------------- /runtime/caml/m.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/m.h.in -------------------------------------------------------------------------------- /runtime/caml/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/md5.h -------------------------------------------------------------------------------- /runtime/caml/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/misc.h -------------------------------------------------------------------------------- /runtime/caml/s.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/s.h.in -------------------------------------------------------------------------------- /runtime/caml/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/sys.h -------------------------------------------------------------------------------- /runtime/caml/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/ui.h -------------------------------------------------------------------------------- /runtime/caml/weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/caml/weak.h -------------------------------------------------------------------------------- /runtime/compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/compact.c -------------------------------------------------------------------------------- /runtime/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/compare.c -------------------------------------------------------------------------------- /runtime/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/custom.c -------------------------------------------------------------------------------- /runtime/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/debugger.c -------------------------------------------------------------------------------- /runtime/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/domain.c -------------------------------------------------------------------------------- /runtime/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/dune -------------------------------------------------------------------------------- /runtime/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/dynlink.c -------------------------------------------------------------------------------- /runtime/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/extern.c -------------------------------------------------------------------------------- /runtime/fail_byt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/fail_byt.c -------------------------------------------------------------------------------- /runtime/fail_nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/fail_nat.c -------------------------------------------------------------------------------- /runtime/finalise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/finalise.c -------------------------------------------------------------------------------- /runtime/fix_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/fix_code.c -------------------------------------------------------------------------------- /runtime/floats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/floats.c -------------------------------------------------------------------------------- /runtime/freelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/freelist.c -------------------------------------------------------------------------------- /runtime/gc_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/gc_ctrl.c -------------------------------------------------------------------------------- /runtime/globroots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/globroots.c -------------------------------------------------------------------------------- /runtime/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/hash.c -------------------------------------------------------------------------------- /runtime/i386.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/i386.S -------------------------------------------------------------------------------- /runtime/i386nt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/i386nt.asm -------------------------------------------------------------------------------- /runtime/intern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/intern.c -------------------------------------------------------------------------------- /runtime/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/interp.c -------------------------------------------------------------------------------- /runtime/ints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/ints.c -------------------------------------------------------------------------------- /runtime/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/io.c -------------------------------------------------------------------------------- /runtime/lexing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/lexing.c -------------------------------------------------------------------------------- /runtime/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/main.c -------------------------------------------------------------------------------- /runtime/major_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/major_gc.c -------------------------------------------------------------------------------- /runtime/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/md5.c -------------------------------------------------------------------------------- /runtime/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/memory.c -------------------------------------------------------------------------------- /runtime/memprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/memprof.c -------------------------------------------------------------------------------- /runtime/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/meta.c -------------------------------------------------------------------------------- /runtime/minor_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/minor_gc.c -------------------------------------------------------------------------------- /runtime/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/misc.c -------------------------------------------------------------------------------- /runtime/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/obj.c -------------------------------------------------------------------------------- /runtime/parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/parsing.c -------------------------------------------------------------------------------- /runtime/power.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/power.S -------------------------------------------------------------------------------- /runtime/printexc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/printexc.c -------------------------------------------------------------------------------- /runtime/roots_byt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/roots_byt.c -------------------------------------------------------------------------------- /runtime/roots_nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/roots_nat.c -------------------------------------------------------------------------------- /runtime/s390x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/s390x.S -------------------------------------------------------------------------------- /runtime/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/signals.c -------------------------------------------------------------------------------- /runtime/stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/stacks.c -------------------------------------------------------------------------------- /runtime/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/str.c -------------------------------------------------------------------------------- /runtime/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/sys.c -------------------------------------------------------------------------------- /runtime/test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/test.s -------------------------------------------------------------------------------- /runtime/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/unix.c -------------------------------------------------------------------------------- /runtime/weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/weak.c -------------------------------------------------------------------------------- /runtime/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/win32.c -------------------------------------------------------------------------------- /runtime/xtensa.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/runtime/xtensa.S -------------------------------------------------------------------------------- /stdlib/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/.depend -------------------------------------------------------------------------------- /stdlib/Compflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/Compflags -------------------------------------------------------------------------------- /stdlib/HACKING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/HACKING.adoc -------------------------------------------------------------------------------- /stdlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/Makefile -------------------------------------------------------------------------------- /stdlib/arg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/arg.ml -------------------------------------------------------------------------------- /stdlib/arg.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/arg.mli -------------------------------------------------------------------------------- /stdlib/array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/array.ml -------------------------------------------------------------------------------- /stdlib/array.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/array.mli -------------------------------------------------------------------------------- /stdlib/bigarray.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bigarray.ml -------------------------------------------------------------------------------- /stdlib/bigarray.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bigarray.mli -------------------------------------------------------------------------------- /stdlib/bool.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bool.ml -------------------------------------------------------------------------------- /stdlib/bool.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bool.mli -------------------------------------------------------------------------------- /stdlib/buffer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/buffer.ml -------------------------------------------------------------------------------- /stdlib/buffer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/buffer.mli -------------------------------------------------------------------------------- /stdlib/bytes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bytes.ml -------------------------------------------------------------------------------- /stdlib/bytes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/bytes.mli -------------------------------------------------------------------------------- /stdlib/callback.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/callback.ml -------------------------------------------------------------------------------- /stdlib/callback.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/callback.mli -------------------------------------------------------------------------------- /stdlib/char.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/char.ml -------------------------------------------------------------------------------- /stdlib/char.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/char.mli -------------------------------------------------------------------------------- /stdlib/complex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/complex.ml -------------------------------------------------------------------------------- /stdlib/complex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/complex.mli -------------------------------------------------------------------------------- /stdlib/digest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/digest.ml -------------------------------------------------------------------------------- /stdlib/digest.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/digest.mli -------------------------------------------------------------------------------- /stdlib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/dune -------------------------------------------------------------------------------- /stdlib/ephemeron.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/ephemeron.ml -------------------------------------------------------------------------------- /stdlib/filename.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/filename.ml -------------------------------------------------------------------------------- /stdlib/filename.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/filename.mli -------------------------------------------------------------------------------- /stdlib/float.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/float.ml -------------------------------------------------------------------------------- /stdlib/float.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/float.mli -------------------------------------------------------------------------------- /stdlib/format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/format.ml -------------------------------------------------------------------------------- /stdlib/format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/format.mli -------------------------------------------------------------------------------- /stdlib/fun.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/fun.ml -------------------------------------------------------------------------------- /stdlib/fun.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/fun.mli -------------------------------------------------------------------------------- /stdlib/gc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/gc.ml -------------------------------------------------------------------------------- /stdlib/gc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/gc.mli -------------------------------------------------------------------------------- /stdlib/genlex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/genlex.ml -------------------------------------------------------------------------------- /stdlib/genlex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/genlex.mli -------------------------------------------------------------------------------- /stdlib/hashbang: -------------------------------------------------------------------------------- 1 | #! -------------------------------------------------------------------------------- /stdlib/hashtbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/hashtbl.ml -------------------------------------------------------------------------------- /stdlib/hashtbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/hashtbl.mli -------------------------------------------------------------------------------- /stdlib/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/header.c -------------------------------------------------------------------------------- /stdlib/headernt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/headernt.c -------------------------------------------------------------------------------- /stdlib/int.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int.ml -------------------------------------------------------------------------------- /stdlib/int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int.mli -------------------------------------------------------------------------------- /stdlib/int32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int32.ml -------------------------------------------------------------------------------- /stdlib/int32.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int32.mli -------------------------------------------------------------------------------- /stdlib/int64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int64.ml -------------------------------------------------------------------------------- /stdlib/int64.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/int64.mli -------------------------------------------------------------------------------- /stdlib/lazy.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/lazy.ml -------------------------------------------------------------------------------- /stdlib/lazy.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/lazy.mli -------------------------------------------------------------------------------- /stdlib/lexing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/lexing.ml -------------------------------------------------------------------------------- /stdlib/lexing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/lexing.mli -------------------------------------------------------------------------------- /stdlib/list.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/list.ml -------------------------------------------------------------------------------- /stdlib/list.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/list.mli -------------------------------------------------------------------------------- /stdlib/map.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/map.ml -------------------------------------------------------------------------------- /stdlib/map.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/map.mli -------------------------------------------------------------------------------- /stdlib/marshal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/marshal.ml -------------------------------------------------------------------------------- /stdlib/marshal.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/marshal.mli -------------------------------------------------------------------------------- /stdlib/nativeint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/nativeint.ml -------------------------------------------------------------------------------- /stdlib/obj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/obj.ml -------------------------------------------------------------------------------- /stdlib/obj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/obj.mli -------------------------------------------------------------------------------- /stdlib/oo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/oo.ml -------------------------------------------------------------------------------- /stdlib/oo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/oo.mli -------------------------------------------------------------------------------- /stdlib/option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/option.ml -------------------------------------------------------------------------------- /stdlib/option.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/option.mli -------------------------------------------------------------------------------- /stdlib/parsing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/parsing.ml -------------------------------------------------------------------------------- /stdlib/parsing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/parsing.mli -------------------------------------------------------------------------------- /stdlib/printexc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/printexc.ml -------------------------------------------------------------------------------- /stdlib/printexc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/printexc.mli -------------------------------------------------------------------------------- /stdlib/printf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/printf.ml -------------------------------------------------------------------------------- /stdlib/printf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/printf.mli -------------------------------------------------------------------------------- /stdlib/queue.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/queue.ml -------------------------------------------------------------------------------- /stdlib/queue.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/queue.mli -------------------------------------------------------------------------------- /stdlib/random.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/random.ml -------------------------------------------------------------------------------- /stdlib/random.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/random.mli -------------------------------------------------------------------------------- /stdlib/result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/result.ml -------------------------------------------------------------------------------- /stdlib/result.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/result.mli -------------------------------------------------------------------------------- /stdlib/scanf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/scanf.ml -------------------------------------------------------------------------------- /stdlib/scanf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/scanf.mli -------------------------------------------------------------------------------- /stdlib/seq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/seq.ml -------------------------------------------------------------------------------- /stdlib/seq.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/seq.mli -------------------------------------------------------------------------------- /stdlib/set.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/set.ml -------------------------------------------------------------------------------- /stdlib/set.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/set.mli -------------------------------------------------------------------------------- /stdlib/spacetime.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/spacetime.ml -------------------------------------------------------------------------------- /stdlib/stack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stack.ml -------------------------------------------------------------------------------- /stdlib/stack.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stack.mli -------------------------------------------------------------------------------- /stdlib/stdLabels.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stdLabels.ml -------------------------------------------------------------------------------- /stdlib/std_exit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/std_exit.ml -------------------------------------------------------------------------------- /stdlib/stdlib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stdlib.ml -------------------------------------------------------------------------------- /stdlib/stdlib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stdlib.mli -------------------------------------------------------------------------------- /stdlib/stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stream.ml -------------------------------------------------------------------------------- /stdlib/stream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/stream.mli -------------------------------------------------------------------------------- /stdlib/string.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/string.ml -------------------------------------------------------------------------------- /stdlib/string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/string.mli -------------------------------------------------------------------------------- /stdlib/sys.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/sys.mli -------------------------------------------------------------------------------- /stdlib/sys.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/sys.mlp -------------------------------------------------------------------------------- /stdlib/uchar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/uchar.ml -------------------------------------------------------------------------------- /stdlib/uchar.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/uchar.mli -------------------------------------------------------------------------------- /stdlib/unit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/unit.ml -------------------------------------------------------------------------------- /stdlib/unit.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/unit.mli -------------------------------------------------------------------------------- /stdlib/weak.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/weak.ml -------------------------------------------------------------------------------- /stdlib/weak.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/stdlib/weak.mli -------------------------------------------------------------------------------- /testsuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/testsuite/Makefile -------------------------------------------------------------------------------- /testsuite/tests/arch-power/exn_raise.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/array-functions/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/asmcomp/func_sections.arm.reference: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /testsuite/tests/asmcomp/func_sections.reference: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /testsuite/tests/asmcomp/is_static_flambda_dep.ml: -------------------------------------------------------------------------------- 1 | let pair = 1, 12 2 | -------------------------------------------------------------------------------- /testsuite/tests/asmcomp/simple_float_const.ml: -------------------------------------------------------------------------------- 1 | let f = 3.14 2 | -------------------------------------------------------------------------------- /testsuite/tests/asmcomp/simple_float_const_opaque.ml: -------------------------------------------------------------------------------- 1 | let f = 3.14 2 | -------------------------------------------------------------------------------- /testsuite/tests/ast-invariants/test.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/backtrace/backtraces_and_finalizers.reference: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /testsuite/tests/backtrace/pr6920_why_at.native.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/backtrace/pr6920_why_swallow.native.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic-float/zero_sized_float_arrays.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic-io/wc.reference: -------------------------------------------------------------------------------- 1 | 1232 characters, 184 words, 58 lines 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic-modules/main.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic-modules/main.reference: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/function_in_ref.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/if_in_if.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/morematch.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/opaque_prim.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/pr1271.reference: -------------------------------------------------------------------------------- 1 | 0 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/pr6216.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/robustmatch.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/structural_constants.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/tbuffer.reference: -------------------------------------------------------------------------------- 1 | 0 1 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/top_level_patterns.reference: -------------------------------------------------------------------------------- 1 | 13 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-more/tprintf.reference: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic-multdef/usemultdef.reference: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic-private/tlength.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/arrays.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/camlCase.ml: -------------------------------------------------------------------------------- 1 | let answer = 42 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/eval_order_1.reference: -------------------------------------------------------------------------------- 1 | 1 0 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/eval_order_2.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/eval_order_3.reference: -------------------------------------------------------------------------------- 1 | 1 0 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/eval_order_4.reference: -------------------------------------------------------------------------------- 1 | x 2 | first 3 | 10foo 4 | bar 5 | -------------------------------------------------------------------------------- /testsuite/tests/basic/eval_order_6.reference: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic/float.reference: -------------------------------------------------------------------------------- 1 | 1./.0. = inf 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/float_physical_equality.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/localexn.reference: -------------------------------------------------------------------------------- 1 | OK 2 | KO 3 | -------------------------------------------------------------------------------- /testsuite/tests/basic/localfunction.reference: -------------------------------------------------------------------------------- 1 | 5840 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/min_int.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/opt_variants.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/pr7253.reference: -------------------------------------------------------------------------------- 1 | First 2 | Raise 3 | Last 4 | Caught 5 | -------------------------------------------------------------------------------- /testsuite/tests/basic/pr7533.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/stringmatch.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/basic/switch_opts.reference: -------------------------------------------------------------------------------- 1 | 22 tests passed 2 | -------------------------------------------------------------------------------- /testsuite/tests/basic/trigraph.reference: -------------------------------------------------------------------------------- 1 | ??' -------------------------------------------------------------------------------- /testsuite/tests/basic/zero_divided_by_n.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/callback/signals_alloc.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/compatibility/main.reference: -------------------------------------------------------------------------------- 1 | v is young 2 | -------------------------------------------------------------------------------- /testsuite/tests/exotic-syntax/exotic.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/extension-constructor/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/flambda/approx_meet.reference: -------------------------------------------------------------------------------- 1 | -inf 2 | -------------------------------------------------------------------------------- /testsuite/tests/flambda/gpr2239.reference: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /testsuite/tests/flambda/gpr998.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/flambda/specialise.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/generalized-open/accepted_batch.reference: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | hidden 4 | -------------------------------------------------------------------------------- /testsuite/tests/int64-unboxing/test.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lazy/lazy1.reference: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/backreferences.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/class_1.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/class_2.reference: -------------------------------------------------------------------------------- 1 | f 2 | g 3 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/generic_array.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/labels.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/lazy_.reference: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/lists.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/mixing_value_closures_1.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/mixing_value_closures_2.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/mutual_functions.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/nested.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/pr4989.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/record_with.reference: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /testsuite/tests/letrec-compilation/ref.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lexing/comments.ocaml.reference: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-bool/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-digest/md5.reference: -------------------------------------------------------------------------------- 1 | Test vectors passed. 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test1_inited_second.ml: -------------------------------------------------------------------------------- 1 | let g x = Test1_main.f x 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test2_inited_first.ml: -------------------------------------------------------------------------------- 1 | let f x = x + 1 [@@inline never] 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test3_plugin_a.ml: -------------------------------------------------------------------------------- 1 | let f x = x + 3 [@@inline never] 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test4_plugin_b.ml: -------------------------------------------------------------------------------- 1 | let f x = x + 3 [@@inline never] 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test7_interface_only.mli: -------------------------------------------------------------------------------- 1 | 2 | type t = int 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test8_plugin_b.mli: -------------------------------------------------------------------------------- 1 | 2 | type t = int 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-initializers/test9_second_plugin.mli: -------------------------------------------------------------------------------- 1 | 2 | type t = int 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-native/pack_client.ml: -------------------------------------------------------------------------------- 1 | let () = 2 | print_endline Mypack.Packed1.mykey 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-native/plugin.mli: -------------------------------------------------------------------------------- 1 | val facts: int list 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-native/sub/plugin3.ml: -------------------------------------------------------------------------------- 1 | let () = 2 | ignore (Api.f 10) 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-packed/a.ml: -------------------------------------------------------------------------------- 1 | let nums = Sys.opaque_identity [1; 2; 3; 4; 5] 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-packed/byte.reference: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-packed/native.reference: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr4229/client.ml: -------------------------------------------------------------------------------- 1 | let () = Static.f Abstract.x 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr4229/main.reference: -------------------------------------------------------------------------------- 1 | Abstract 10 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr4229/static.ml: -------------------------------------------------------------------------------- 1 | let f = Abstract.print 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr4839/byte.plugin2.reference: -------------------------------------------------------------------------------- 1 | API 2 | ERROR: interface mismatch on Packed 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr4839/native.plugin2.reference: -------------------------------------------------------------------------------- 1 | API 2 | ERROR: interface mismatch on Packed 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr6950/byte.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr6950/native.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr9209/main.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr9209/ocamltests: -------------------------------------------------------------------------------- 1 | dyn.ml 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-pr9209/test.c: -------------------------------------------------------------------------------- 1 | int testdynfail() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin4/chicken.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin5/chicken.ml: -------------------------------------------------------------------------------- 1 | 2 | let x = 5 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin5/chicken.mli: -------------------------------------------------------------------------------- 1 | 2 | val x : int 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin6/partridge.ml: -------------------------------------------------------------------------------- 1 | let wings = 2 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin6/partridge.mli: -------------------------------------------------------------------------------- 1 | val wings : int 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-dynlink-private/plugin6/pheasant.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-filename/extension.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-filename/suffix.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-float/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-fun/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-int/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-int64/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-list/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-marshal/intern_final.reference: -------------------------------------------------------------------------------- 1 | OK! 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-obj/reachable_words.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-obj/with_tag.reference: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-option/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-queue/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-random/rand.reference: -------------------------------------------------------------------------------- 1 | PASSED 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-result/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-seq/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-set/testmap.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-set/testset.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-stack/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-stdlabels/test_stdlabels.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-stream/mpr7769.reference: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-stream/mpr7769.txt: -------------------------------------------------------------------------------- 1 | ab 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-string/test_string.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-systhreads/threadsigmask.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/beat.reference: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/bufchan.reference: -------------------------------------------------------------------------------- 1 | 3 2 | un 3 | deux 4 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/delayintr.reference: -------------------------------------------------------------------------------- 1 | Received signal early 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/pr5325.reference: -------------------------------------------------------------------------------- 1 | >>Client data 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/pr7638.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/prodcons.reference: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/prodcons2.reference: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/swapchan.reference: -------------------------------------------------------------------------------- 1 | f G 2 | g F 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/swapchan.run: -------------------------------------------------------------------------------- 1 | ${program} | ${SORT} > ${output} 2>&1 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/tls.run: -------------------------------------------------------------------------------- 1 | ${program} | LC_ALL=C ${SORT} > ${output} 2>&1 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-threads/torture.reference: -------------------------------------------------------------------------------- 1 | passed 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-uchar/test.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/dup.reference: -------------------------------------------------------------------------------- 1 | Some output 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/dup2.reference: -------------------------------------------------------------------------------- 1 | --- 2 | Some output 3 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/pipe_eof.reference: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/process_pid.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/utimes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/common/wait_nohang.reference: -------------------------------------------------------------------------------- 1 | aa 2 | -------------------------------------------------------------------------------- /testsuite/tests/lib-unix/isatty/isatty_tty.reference: -------------------------------------------------------------------------------- 1 | /dev/tty = true 2 | -------------------------------------------------------------------------------- /testsuite/tests/link-test/use_in_pack.ml: -------------------------------------------------------------------------------- 1 | let _, _ = External_for_pack.frexp 12. 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/allocation.reference: -------------------------------------------------------------------------------- 1 | no allocations for multiple-value match 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/exception_propagation.reference: -------------------------------------------------------------------------------- 1 | caught expected exception (Not_found) 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/identifier_sharing.reference: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/match_failure.reference: -------------------------------------------------------------------------------- 1 | match failure, as expected 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/nested_handlers.reference: -------------------------------------------------------------------------------- 1 | five four three two one 2 | -------------------------------------------------------------------------------- /testsuite/tests/match-exception/tail_calls.reference: -------------------------------------------------------------------------------- 1 | handler-case (match) is tail recursive 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc-unsafe/quicksort.reference: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /testsuite/tests/misc/bdd.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/boyer.reference: -------------------------------------------------------------------------------- 1 | Proved! 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/fib.reference: -------------------------------------------------------------------------------- 1 | 1346269 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/finaliser.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/misc/gcwords.reference: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/gpr1370.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/misc/nucleic.reference: -------------------------------------------------------------------------------- 1 | 33.7976 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/pr7168.reference: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/takc.reference: -------------------------------------------------------------------------------- 1 | 1400 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/taku.reference: -------------------------------------------------------------------------------- 1 | 1400 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/weaklifetime.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/misc/weaktest.reference: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /testsuite/tests/no-alias-deps/a2235.ml: -------------------------------------------------------------------------------- 1 | let x = 42 2 | -------------------------------------------------------------------------------- /testsuite/tests/no-alias-deps/b.cmi.invalid: -------------------------------------------------------------------------------- 1 | Not a valid cmi file 2 | -------------------------------------------------------------------------------- /testsuite/tests/no-alias-deps/c.mli: -------------------------------------------------------------------------------- 1 | val something : int 2 | -------------------------------------------------------------------------------- /testsuite/tests/no-alias-deps/d.mli: -------------------------------------------------------------------------------- 1 | val something : int 2 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/fst/opaque_impl.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = x 3 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/fst/opaque_intf.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = x 3 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/fst/regular.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = x 3 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/snd/opaque_impl.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = y 3 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/snd/opaque_intf.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = y 3 | -------------------------------------------------------------------------------- /testsuite/tests/opaque/snd/regular.ml: -------------------------------------------------------------------------------- 1 | 2 | let choose x y = y 3 | -------------------------------------------------------------------------------- /testsuite/tests/output-complete-obj/github9344.reference: -------------------------------------------------------------------------------- 1 | Fatal error: exception Not_found 2 | -------------------------------------------------------------------------------- /testsuite/tests/output-complete-obj/test2.reference: -------------------------------------------------------------------------------- 1 | Hello OCaml! 2 | Program terminated 3 | -------------------------------------------------------------------------------- /testsuite/tests/pack-and-lto/main_warning.ml: -------------------------------------------------------------------------------- 1 | 2 | let () = No_lto.f () 3 | -------------------------------------------------------------------------------- /testsuite/tests/parsetree/test.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/parsing/pr6604_3.compilers.reference: -------------------------------------------------------------------------------- 1 | [] 2 | 3 | -------------------------------------------------------------------------------- /testsuite/tests/ppx-attributes/warning.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/prim-revapply/revapply.reference: -------------------------------------------------------------------------------- 1 | 6 2 | 36 3 | 18 4 | 37 5 | 260 6 | -------------------------------------------------------------------------------- /testsuite/tests/raise-counts/main.reference: -------------------------------------------------------------------------------- 1 | OK. 2 | -------------------------------------------------------------------------------- /testsuite/tests/regression/gpr1623/gpr1623.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/regression/missing_set_of_closures/b2.ml: -------------------------------------------------------------------------------- 1 | 2 | let f = B.g 3 3 | -------------------------------------------------------------------------------- /testsuite/tests/regression/missing_set_of_closures/dir/c.ml: -------------------------------------------------------------------------------- 1 | 2 | let f = B2.f 3 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr3612/pr3612.reference: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr5757/pr5757.reference: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr6024/pr6024.ml: -------------------------------------------------------------------------------- 1 | (* TEST *) 2 | 3 | Format.printf "@[%@-@@-@]@.";; 4 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr6024/pr6024.reference: -------------------------------------------------------------------------------- 1 | @-@- 2 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr7426/pr7426.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr7798/pr7798.reference: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr7920/pr7920.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr8769/fortuna.ml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/regression/pr8769/rng.ml: -------------------------------------------------------------------------------- 1 | module F = Fortuna 2 | -------------------------------------------------------------------------------- /testsuite/tests/required-external/main.reference: -------------------------------------------------------------------------------- 1 | Module `File' is linked 2 | -------------------------------------------------------------------------------- /testsuite/tests/runtime-C-exceptions/test.reference: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | -------------------------------------------------------------------------------- /testsuite/tests/self-contained-toplevel/foo.ml: -------------------------------------------------------------------------------- 1 | let value = "Hello, world!" 2 | -------------------------------------------------------------------------------- /testsuite/tests/self-contained-toplevel/input.ml: -------------------------------------------------------------------------------- 1 | print_endline Foo.value;; 2 | -------------------------------------------------------------------------------- /testsuite/tests/self-contained-toplevel/main.reference: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-command-line/test.compilers.reference: -------------------------------------------------------------------------------- 1 | don't know what to do with unknown-file 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-command-line/unknown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/tool-debugger/dynlink/input_script: -------------------------------------------------------------------------------- 1 | r 2 | br @ Plugin 2 3 | r 4 | bt 5 | r 6 | -------------------------------------------------------------------------------- /testsuite/tests/tool-debugger/no_debug_event/a.ml: -------------------------------------------------------------------------------- 1 | let x = 1 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-debugger/no_debug_event/input_script: -------------------------------------------------------------------------------- 1 | run 2 | quit 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-lexyacc/mpr7760.reference: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamlc-open/a.ml: -------------------------------------------------------------------------------- 1 | module M = struct 2 | let f x = x +1 3 | end 4 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamlc-open/b.ml: -------------------------------------------------------------------------------- 1 | let g = f 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-modalias/A.ml: -------------------------------------------------------------------------------- 1 | let f x = x +1 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-modalias/B.ml: -------------------------------------------------------------------------------- 1 | open Packed 2 | let g = A.f 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-modalias/C.ml: -------------------------------------------------------------------------------- 1 | open Lib 2 | let h x = A.f x + B.g x 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-modalias/D.ml: -------------------------------------------------------------------------------- 1 | let z x = imp (x*2) 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-shadowing/dir1/b.ml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-shadowing/dir2/b.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldep-shadowing/dir2/c.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldoc-open/inner.ml: -------------------------------------------------------------------------------- 1 | 2 | type a = int 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-ocamldoc/t03.ocamldoc.reference: -------------------------------------------------------------------------------- 1 | Warning: Module type not found 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/first_arg_fail.txt: -------------------------------------------------------------------------------- 1 | test.ml 2 | -I 3 | ../ 4 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/indirect_first_arg_fail.txt: -------------------------------------------------------------------------------- 1 | -args 2 | first_arg_fail.txt 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/indirect_last_arg_fail.txt: -------------------------------------------------------------------------------- 1 | -args 2 | last_arg_fail.txt 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/last_arg_fail.txt: -------------------------------------------------------------------------------- 1 | -I 2 | ../ 3 | test.ml 4 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/print_args.reference: -------------------------------------------------------------------------------- 1 | print_args.ml 2 | foo 3 | bar 4 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/working_arg.txt: -------------------------------------------------------------------------------- 1 | -open 2 | Printf 3 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel-invocation/working_arg.txt.reference: -------------------------------------------------------------------------------- 1 | Test succeeds 2 | - : unit = () 3 | 4 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel/error_highlighting_use1.ml: -------------------------------------------------------------------------------- 1 | let x = (1 + 2) +. 3. in ();; 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel/error_highlighting_use2.ml: -------------------------------------------------------------------------------- 1 | let x = (1 + 2 in ();; 2 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel/error_highlighting_use3.ml: -------------------------------------------------------------------------------- 1 | let x = (1 2 | + 3 | 2 in 4 | ();; 5 | -------------------------------------------------------------------------------- /testsuite/tests/tool-toplevel/error_highlighting_use4.ml: -------------------------------------------------------------------------------- 1 | let x = (1 2 | + 3 | 2) +. 4 | 3. in ();; 5 | -------------------------------------------------------------------------------- /testsuite/tests/typing-labels/mixin.reference: -------------------------------------------------------------------------------- 1 | y 2 | -6 + x 3 | 9 4 | -------------------------------------------------------------------------------- /testsuite/tests/typing-labels/mixin2.reference: -------------------------------------------------------------------------------- 1 | y 2 | -6 + x 3 | 9 4 | -------------------------------------------------------------------------------- /testsuite/tests/typing-labels/mixin3.reference: -------------------------------------------------------------------------------- 1 | y 2 | -6 + x 3 | 9 4 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-2/bar.mli: -------------------------------------------------------------------------------- 1 | val foo : unit -> 'a Foo.t 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-2/baz.ml: -------------------------------------------------------------------------------- 1 | let x = Bar.foo () 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-2/foo.mli: -------------------------------------------------------------------------------- 1 | type 'a t 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-2/test.compilers.reference: -------------------------------------------------------------------------------- 1 | val x : '_weak1 Foo.t 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-3/ocamltest: -------------------------------------------------------------------------------- 1 | user.ml 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi-3/original.ml: -------------------------------------------------------------------------------- 1 | type 'a t = T 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi/a.ml: -------------------------------------------------------------------------------- 1 | let (a : M.a) = 2 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi/b.ml: -------------------------------------------------------------------------------- 1 | let (b : M.b) = 2 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-missing-cmi/main.ml: -------------------------------------------------------------------------------- 1 | let _ = A.a = B.b 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-modules/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/typing-multifile/a.ml: -------------------------------------------------------------------------------- 1 | type _ t = T 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-multifile/e.ml: -------------------------------------------------------------------------------- 1 | open D;; let f (C {f}) = () 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-polyvariants-bugs-2/pr3918a.mli: -------------------------------------------------------------------------------- 1 | type 'a voption = [ `None | `Some of 'a] 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-shadowing-of-pervasives-submodules/largeFile.ml: -------------------------------------------------------------------------------- 1 | let message = "Hello, world!" 2 | -------------------------------------------------------------------------------- /testsuite/tests/typing-shadowing-of-pervasives-submodules/redefine_largefile.reference: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /testsuite/tests/unboxed-primitive-args/test.reference: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/utils/test_strongly_connected_components.reference: -------------------------------------------------------------------------------- 1 | 2 | All tests succeeded. 3 | -------------------------------------------------------------------------------- /testsuite/tests/warnings/module_without_cmx.mli: -------------------------------------------------------------------------------- 1 | 2 | val id : 'a -> 'a 3 | -------------------------------------------------------------------------------- /tools/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/.depend -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/caml_tex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/caml_tex.ml -------------------------------------------------------------------------------- /tools/check-typo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/check-typo -------------------------------------------------------------------------------- /tools/checkstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/checkstack.c -------------------------------------------------------------------------------- /tools/ci/inria/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ci/inria/main -------------------------------------------------------------------------------- /tools/cmpbyt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/cmpbyt.ml -------------------------------------------------------------------------------- /tools/cmt2annot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/cmt2annot.ml -------------------------------------------------------------------------------- /tools/cvt_emit.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/cvt_emit.mll -------------------------------------------------------------------------------- /tools/dumpobj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/dumpobj.ml -------------------------------------------------------------------------------- /tools/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/dune -------------------------------------------------------------------------------- /tools/gdb-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/gdb-macros -------------------------------------------------------------------------------- /tools/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/magic -------------------------------------------------------------------------------- /tools/objinfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/objinfo.ml -------------------------------------------------------------------------------- /tools/ocamlcp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamlcp.ml -------------------------------------------------------------------------------- /tools/ocamldep.ml: -------------------------------------------------------------------------------- 1 | let () = Makedepend.main () 2 | -------------------------------------------------------------------------------- /tools/ocamlmklib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamlmklib.ml -------------------------------------------------------------------------------- /tools/ocamlmktop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamlmktop.ml -------------------------------------------------------------------------------- /tools/ocamloptp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamloptp.ml -------------------------------------------------------------------------------- /tools/ocamlprof.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamlprof.ml -------------------------------------------------------------------------------- /tools/ocamlsize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/ocamlsize -------------------------------------------------------------------------------- /tools/primreq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/primreq.ml -------------------------------------------------------------------------------- /tools/profiling.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/profiling.ml -------------------------------------------------------------------------------- /tools/profiling.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/profiling.mli -------------------------------------------------------------------------------- /tools/read_cmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/read_cmt.ml -------------------------------------------------------------------------------- /tools/stripdebug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/tools/stripdebug.ml -------------------------------------------------------------------------------- /toplevel/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/dune -------------------------------------------------------------------------------- /toplevel/expunge.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/expunge.ml -------------------------------------------------------------------------------- /toplevel/topdirs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/topdirs.ml -------------------------------------------------------------------------------- /toplevel/toploop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/toploop.ml -------------------------------------------------------------------------------- /toplevel/topmain.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/topmain.ml -------------------------------------------------------------------------------- /toplevel/trace.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/trace.ml -------------------------------------------------------------------------------- /toplevel/trace.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/toplevel/trace.mli -------------------------------------------------------------------------------- /typing/HACKING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/HACKING.adoc -------------------------------------------------------------------------------- /typing/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/TODO.md -------------------------------------------------------------------------------- /typing/annot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/annot.mli -------------------------------------------------------------------------------- /typing/btype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/btype.ml -------------------------------------------------------------------------------- /typing/btype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/btype.mli -------------------------------------------------------------------------------- /typing/ctype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/ctype.ml -------------------------------------------------------------------------------- /typing/ctype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/ctype.mli -------------------------------------------------------------------------------- /typing/datarepr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/datarepr.ml -------------------------------------------------------------------------------- /typing/datarepr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/datarepr.mli -------------------------------------------------------------------------------- /typing/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/env.ml -------------------------------------------------------------------------------- /typing/env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/env.mli -------------------------------------------------------------------------------- /typing/envaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/envaux.ml -------------------------------------------------------------------------------- /typing/envaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/envaux.mli -------------------------------------------------------------------------------- /typing/ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/ident.ml -------------------------------------------------------------------------------- /typing/ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/ident.mli -------------------------------------------------------------------------------- /typing/mtype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/mtype.ml -------------------------------------------------------------------------------- /typing/mtype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/mtype.mli -------------------------------------------------------------------------------- /typing/oprint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/oprint.ml -------------------------------------------------------------------------------- /typing/oprint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/oprint.mli -------------------------------------------------------------------------------- /typing/parmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/parmatch.ml -------------------------------------------------------------------------------- /typing/parmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/parmatch.mli -------------------------------------------------------------------------------- /typing/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/path.ml -------------------------------------------------------------------------------- /typing/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/path.mli -------------------------------------------------------------------------------- /typing/predef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/predef.ml -------------------------------------------------------------------------------- /typing/predef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/predef.mli -------------------------------------------------------------------------------- /typing/primitive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/primitive.ml -------------------------------------------------------------------------------- /typing/printpat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/printpat.ml -------------------------------------------------------------------------------- /typing/printpat.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/printpat.mli -------------------------------------------------------------------------------- /typing/printtyp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/printtyp.ml -------------------------------------------------------------------------------- /typing/printtyp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/printtyp.mli -------------------------------------------------------------------------------- /typing/rec_check.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/rec_check.ml -------------------------------------------------------------------------------- /typing/stypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/stypes.ml -------------------------------------------------------------------------------- /typing/stypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/stypes.mli -------------------------------------------------------------------------------- /typing/subst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/subst.ml -------------------------------------------------------------------------------- /typing/subst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/subst.mli -------------------------------------------------------------------------------- /typing/typeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typeclass.ml -------------------------------------------------------------------------------- /typing/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typecore.ml -------------------------------------------------------------------------------- /typing/typecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typecore.mli -------------------------------------------------------------------------------- /typing/typedecl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typedecl.ml -------------------------------------------------------------------------------- /typing/typedecl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typedecl.mli -------------------------------------------------------------------------------- /typing/typedtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typedtree.ml -------------------------------------------------------------------------------- /typing/typemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typemod.ml -------------------------------------------------------------------------------- /typing/typemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typemod.mli -------------------------------------------------------------------------------- /typing/typeopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typeopt.ml -------------------------------------------------------------------------------- /typing/typeopt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typeopt.mli -------------------------------------------------------------------------------- /typing/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/types.ml -------------------------------------------------------------------------------- /typing/types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/types.mli -------------------------------------------------------------------------------- /typing/typetexp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typetexp.ml -------------------------------------------------------------------------------- /typing/typetexp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/typetexp.mli -------------------------------------------------------------------------------- /typing/untypeast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/typing/untypeast.ml -------------------------------------------------------------------------------- /utils/HACKING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/HACKING.adoc -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/arg_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/arg_helper.ml -------------------------------------------------------------------------------- /utils/ccomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/ccomp.ml -------------------------------------------------------------------------------- /utils/ccomp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/ccomp.mli -------------------------------------------------------------------------------- /utils/clflags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/clflags.ml -------------------------------------------------------------------------------- /utils/clflags.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/clflags.mli -------------------------------------------------------------------------------- /utils/config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/config.mli -------------------------------------------------------------------------------- /utils/config.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/config.mlp -------------------------------------------------------------------------------- /utils/consistbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/consistbl.ml -------------------------------------------------------------------------------- /utils/consistbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/consistbl.mli -------------------------------------------------------------------------------- /utils/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/dune -------------------------------------------------------------------------------- /utils/load_path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/load_path.ml -------------------------------------------------------------------------------- /utils/load_path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/load_path.mli -------------------------------------------------------------------------------- /utils/misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/misc.ml -------------------------------------------------------------------------------- /utils/misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/misc.mli -------------------------------------------------------------------------------- /utils/numbers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/numbers.ml -------------------------------------------------------------------------------- /utils/numbers.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/numbers.mli -------------------------------------------------------------------------------- /utils/profile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/profile.ml -------------------------------------------------------------------------------- /utils/profile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/profile.mli -------------------------------------------------------------------------------- /utils/targetint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/targetint.ml -------------------------------------------------------------------------------- /utils/targetint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/targetint.mli -------------------------------------------------------------------------------- /utils/terminfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/terminfo.ml -------------------------------------------------------------------------------- /utils/terminfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/terminfo.mli -------------------------------------------------------------------------------- /utils/warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/warnings.ml -------------------------------------------------------------------------------- /utils/warnings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/utils/warnings.mli -------------------------------------------------------------------------------- /yacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/Makefile -------------------------------------------------------------------------------- /yacc/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/closure.c -------------------------------------------------------------------------------- /yacc/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/defs.h -------------------------------------------------------------------------------- /yacc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/error.c -------------------------------------------------------------------------------- /yacc/lalr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/lalr.c -------------------------------------------------------------------------------- /yacc/lr0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/lr0.c -------------------------------------------------------------------------------- /yacc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/main.c -------------------------------------------------------------------------------- /yacc/mkpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/mkpar.c -------------------------------------------------------------------------------- /yacc/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/output.c -------------------------------------------------------------------------------- /yacc/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/reader.c -------------------------------------------------------------------------------- /yacc/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/skeleton.c -------------------------------------------------------------------------------- /yacc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/symtab.c -------------------------------------------------------------------------------- /yacc/verbose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/verbose.c -------------------------------------------------------------------------------- /yacc/warshall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/warshall.c -------------------------------------------------------------------------------- /yacc/wstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/wstr.c -------------------------------------------------------------------------------- /yacc/yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/well-typed-lightbulbs/ocaml-esp32/HEAD/yacc/yacc --------------------------------------------------------------------------------