├── .gitignore ├── LICENSE ├── README.md ├── deps ├── github.com │ └── ivmai │ │ └── bdwgc │ │ ├── .appveyor.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── Config.cmake.in │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.direct │ │ ├── NT_MAKEFILE │ │ ├── README.md │ │ ├── WCC_MAKEFILE │ │ ├── allchblk.c │ │ ├── alloc.c │ │ ├── autogen.sh │ │ ├── backgraph.c │ │ ├── bdw-gc.pc.in │ │ ├── blacklst.c │ │ ├── checksums.c │ │ ├── configure.ac │ │ ├── cord │ │ ├── cord.am │ │ ├── cordbscs.c │ │ ├── cordprnt.c │ │ ├── cordxtra.c │ │ └── tests │ │ │ ├── cordtest.c │ │ │ ├── de.c │ │ │ ├── de_cmds.h │ │ │ ├── de_win.c │ │ │ ├── de_win.h │ │ │ └── de_win.rc │ │ ├── darwin_stop_world.c │ │ ├── dbg_mlc.c │ │ ├── digimars.mak │ │ ├── docs │ │ ├── README.autoconf │ │ ├── README.cmake │ │ ├── README.cords │ │ ├── README.environment │ │ ├── README.macros │ │ ├── debugging.md │ │ ├── faq.md │ │ ├── finalization.md │ │ ├── gcdescr.md │ │ ├── gcinterface.md │ │ ├── leak.md │ │ ├── overview.md │ │ ├── platforms │ │ │ ├── README.aix │ │ │ ├── README.amiga │ │ │ ├── README.arm_cross │ │ │ ├── README.darwin │ │ │ ├── README.dgux386 │ │ │ ├── README.emscripten │ │ │ ├── README.ews4800 │ │ │ ├── README.hp │ │ │ ├── README.linux │ │ │ ├── README.mac │ │ │ ├── README.os2 │ │ │ ├── README.sgi │ │ │ ├── README.solaris2 │ │ │ ├── README.symbian │ │ │ ├── README.uts │ │ │ ├── README.win32 │ │ │ └── README.win64 │ │ ├── porting.md │ │ ├── scale.md │ │ ├── simple_example.md │ │ └── tree.md │ │ ├── dyn_load.c │ │ ├── extra │ │ ├── AmigaOS.c │ │ ├── MacOS.c │ │ ├── Mac_files │ │ │ ├── MacOS_config.h │ │ │ ├── dataend.c │ │ │ └── datastart.c │ │ ├── gc.c │ │ ├── msvc_dbg.c │ │ ├── pcr_interface.c │ │ ├── real_malloc.c │ │ ├── symbian.cpp │ │ └── symbian │ │ │ ├── global_end.cpp │ │ │ ├── global_start.cpp │ │ │ └── init_global_static_roots.cpp │ │ ├── finalize.c │ │ ├── fnlz_mlc.c │ │ ├── gc.man │ │ ├── gc_badalc.cc │ │ ├── gc_badalc.cpp │ │ ├── gc_cpp.cc │ │ ├── gc_cpp.cpp │ │ ├── gc_dlopen.c │ │ ├── gcj_mlc.c │ │ ├── headers.c │ │ ├── ia64_save_regs_in_stack.s │ │ ├── include │ │ ├── gc.h │ │ ├── gc │ │ │ ├── cord.h │ │ │ ├── cord_pos.h │ │ │ ├── ec.h │ │ │ ├── gc.h │ │ │ ├── gc_allocator.h │ │ │ ├── gc_backptr.h │ │ │ ├── gc_config_macros.h │ │ │ ├── gc_cpp.h │ │ │ ├── gc_disclaim.h │ │ │ ├── gc_gcj.h │ │ │ ├── gc_inline.h │ │ │ ├── gc_mark.h │ │ │ ├── gc_pthread_redirects.h │ │ │ ├── gc_tiny_fl.h │ │ │ ├── gc_typed.h │ │ │ ├── gc_version.h │ │ │ ├── javaxfc.h │ │ │ └── leak_detector.h │ │ ├── gc_cpp.h │ │ ├── include.am │ │ └── private │ │ │ ├── darwin_semaphore.h │ │ │ ├── dbg_mlc.h │ │ │ ├── gc_alloc_ptrs.h │ │ │ ├── gc_atomic_ops.h │ │ │ ├── gc_hdrs.h │ │ │ ├── gc_locks.h │ │ │ ├── gc_pmark.h │ │ │ ├── gc_priv.h │ │ │ ├── gcconfig.h │ │ │ ├── pthread_support.h │ │ │ ├── specific.h │ │ │ └── thread_local_alloc.h │ │ ├── m4 │ │ └── gc_set_version.m4 │ │ ├── mach_dep.c │ │ ├── malloc.c │ │ ├── mallocx.c │ │ ├── mark.c │ │ ├── mark_rts.c │ │ ├── misc.c │ │ ├── new_hblk.c │ │ ├── obj_map.c │ │ ├── os_dep.c │ │ ├── pthread_start.c │ │ ├── pthread_stop_world.c │ │ ├── pthread_support.c │ │ ├── ptr_chck.c │ │ ├── reclaim.c │ │ ├── sparc_mach_dep.S │ │ ├── sparc_netbsd_mach_dep.s │ │ ├── specific.c │ │ ├── tests │ │ ├── atomicops.c │ │ ├── cpp.cc │ │ ├── disclaim.c │ │ ├── disclaim_bench.c │ │ ├── gctest.c │ │ ├── huge.c │ │ ├── initfromthread.c │ │ ├── leak.c │ │ ├── middle.c │ │ ├── realloc.c │ │ ├── smash.c │ │ ├── staticroots.c │ │ ├── staticroots_lib.c │ │ ├── subthreadcreate.c │ │ ├── tests.am │ │ ├── threadkey.c │ │ ├── threadleak.c │ │ ├── trace.c │ │ └── weakmap.c │ │ ├── thread_local_alloc.c │ │ ├── tools │ │ ├── callprocs.sh │ │ ├── if_mach.c │ │ ├── if_not_there.c │ │ ├── setjmp_t.c │ │ └── threadlibs.c │ │ ├── typd_mlc.c │ │ └── win32_threads.c ├── linenoise.c └── linenoise.h ├── examples ├── albums.lisp ├── fizzbuzz-cond.lisp ├── fizzbuzz-if.lisp ├── hello.lisp ├── mod-pos.lisp ├── quine.lisp ├── random.lisp └── triangles.lisp ├── src ├── ast.zig ├── boehm.zig ├── interpreter.zig ├── intrinsics.zig ├── linereader.zig ├── main.zig ├── tests.zig └── util.zig ├── std.lisp └── test.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | zig-* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/README.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/.appveyor.yml -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/.gitattributes -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/.gitignore -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/.travis.yml -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/AUTHORS -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/ChangeLog -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/Config.cmake.in -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/LICENSE -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/Makefile.am -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/Makefile.direct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/Makefile.direct -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/NT_MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/NT_MAKEFILE -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/README.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/WCC_MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/WCC_MAKEFILE -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/allchblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/allchblk.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/alloc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/autogen.sh -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/backgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/backgraph.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/bdw-gc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/bdw-gc.pc.in -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/blacklst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/blacklst.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/checksums.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/configure.ac -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/cord.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/cord.am -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/cordbscs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/cordbscs.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/cordprnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/cordprnt.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/cordxtra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/cordxtra.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/cordtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/cordtest.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/de.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/de_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/de_cmds.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/de_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/de_win.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/de_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/de_win.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/cord/tests/de_win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/cord/tests/de_win.rc -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/darwin_stop_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/darwin_stop_world.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/dbg_mlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/dbg_mlc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/digimars.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/digimars.mak -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/README.autoconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/README.autoconf -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/README.cmake -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/README.cords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/README.cords -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/README.environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/README.environment -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/README.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/README.macros -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/debugging.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/faq.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/finalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/finalization.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/gcdescr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/gcdescr.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/gcinterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/gcinterface.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/leak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/leak.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/overview.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.aix -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.amiga -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.arm_cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.arm_cross -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.darwin -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.dgux386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.dgux386 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.emscripten -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.ews4800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.ews4800 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.hp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.linux -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.mac -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.os2 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.sgi -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.solaris2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.solaris2 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.symbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.symbian -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.uts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.uts -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.win32 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/platforms/README.win64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/platforms/README.win64 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/porting.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/scale.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/simple_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/simple_example.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/docs/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/docs/tree.md -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/dyn_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/dyn_load.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/AmigaOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/AmigaOS.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/MacOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/MacOS.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/Mac_files/MacOS_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/Mac_files/MacOS_config.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/Mac_files/dataend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/Mac_files/dataend.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/Mac_files/datastart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/Mac_files/datastart.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/gc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/msvc_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/msvc_dbg.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/pcr_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/pcr_interface.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/real_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/real_malloc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/symbian.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/symbian/global_end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/symbian/global_end.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/symbian/global_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/symbian/global_start.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/extra/symbian/init_global_static_roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/extra/symbian/init_global_static_roots.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/finalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/finalize.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/fnlz_mlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/fnlz_mlc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc.man -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc_badalc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc_badalc.cc -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc_badalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc_badalc.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc_cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc_cpp.cc -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc_cpp.cpp -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gc_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gc_dlopen.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/gcj_mlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/gcj_mlc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/headers.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/ia64_save_regs_in_stack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/ia64_save_regs_in_stack.s -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/cord.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/cord_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/cord_pos.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/ec.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_allocator.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_backptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_backptr.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_config_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_config_macros.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_cpp.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_disclaim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_disclaim.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_gcj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_gcj.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_inline.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_mark.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_pthread_redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_pthread_redirects.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_tiny_fl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_tiny_fl.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_typed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_typed.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/gc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/gc_version.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/javaxfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/javaxfc.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc/leak_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc/leak_detector.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/gc_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/gc_cpp.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/include.am -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/darwin_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/darwin_semaphore.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/dbg_mlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/dbg_mlc.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_alloc_ptrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_alloc_ptrs.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_atomic_ops.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_hdrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_hdrs.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_locks.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_pmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_pmark.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gc_priv.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/gcconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/gcconfig.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/pthread_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/pthread_support.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/specific.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/include/private/thread_local_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/include/private/thread_local_alloc.h -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/m4/gc_set_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/m4/gc_set_version.m4 -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/mach_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/mach_dep.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/malloc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/mallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/mallocx.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/mark.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/mark_rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/mark_rts.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/misc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/new_hblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/new_hblk.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/obj_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/obj_map.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/os_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/os_dep.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/pthread_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/pthread_start.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/pthread_stop_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/pthread_stop_world.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/pthread_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/pthread_support.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/ptr_chck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/ptr_chck.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/reclaim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/reclaim.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/sparc_mach_dep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/sparc_mach_dep.S -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/sparc_netbsd_mach_dep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/sparc_netbsd_mach_dep.s -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/specific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/specific.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/atomicops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/atomicops.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/cpp.cc -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/disclaim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/disclaim.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/disclaim_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/disclaim_bench.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/gctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/gctest.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/huge.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/initfromthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/initfromthread.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/leak.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/middle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/middle.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/realloc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/smash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/smash.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/staticroots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/staticroots.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/staticroots_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/staticroots_lib.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/subthreadcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/subthreadcreate.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/tests.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/tests.am -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/threadkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/threadkey.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/threadleak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/threadleak.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/trace.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tests/weakmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tests/weakmap.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/thread_local_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/thread_local_alloc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tools/callprocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tools/callprocs.sh -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tools/if_mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tools/if_mach.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tools/if_not_there.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tools/if_not_there.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tools/setjmp_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tools/setjmp_t.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/tools/threadlibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/tools/threadlibs.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/typd_mlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/typd_mlc.c -------------------------------------------------------------------------------- /deps/github.com/ivmai/bdwgc/win32_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/github.com/ivmai/bdwgc/win32_threads.c -------------------------------------------------------------------------------- /deps/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/linenoise.c -------------------------------------------------------------------------------- /deps/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/deps/linenoise.h -------------------------------------------------------------------------------- /examples/albums.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/albums.lisp -------------------------------------------------------------------------------- /examples/fizzbuzz-cond.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/fizzbuzz-cond.lisp -------------------------------------------------------------------------------- /examples/fizzbuzz-if.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/fizzbuzz-if.lisp -------------------------------------------------------------------------------- /examples/hello.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/hello.lisp -------------------------------------------------------------------------------- /examples/mod-pos.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/mod-pos.lisp -------------------------------------------------------------------------------- /examples/quine.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/quine.lisp -------------------------------------------------------------------------------- /examples/random.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/random.lisp -------------------------------------------------------------------------------- /examples/triangles.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/examples/triangles.lisp -------------------------------------------------------------------------------- /src/ast.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/ast.zig -------------------------------------------------------------------------------- /src/boehm.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/boehm.zig -------------------------------------------------------------------------------- /src/interpreter.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/interpreter.zig -------------------------------------------------------------------------------- /src/intrinsics.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/intrinsics.zig -------------------------------------------------------------------------------- /src/linereader.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/linereader.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/tests.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/tests.zig -------------------------------------------------------------------------------- /src/util.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/src/util.zig -------------------------------------------------------------------------------- /std.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/std.lisp -------------------------------------------------------------------------------- /test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocode/bio/HEAD/test.lisp --------------------------------------------------------------------------------