├── DIFFERENCES ├── README ├── RELEASE ├── dylan-examples.dyl ├── examples-from-book.text ├── full-test.scm ├── kits ├── MIT │ ├── README │ ├── dylan-examples.output │ ├── mit-rep.scm │ ├── mit-specific.scm │ ├── restart-example.dyl │ ├── src │ │ ├── class-structure.scm │ │ ├── class.scm │ │ ├── common.scm │ │ ├── comp-class.scm │ │ ├── comp-exc.scm │ │ ├── comp-method.scm │ │ ├── comp-sf.scm │ │ ├── comp-util.scm │ │ ├── comp.scm │ │ ├── compiler.scm │ │ ├── gambit-specific.scm │ │ ├── generic.scm │ │ ├── implementation-specific │ │ ├── load-compiler.scm │ │ ├── load-runtime.scm │ │ ├── load-thomas.scm │ │ ├── mit-rep.scm │ │ ├── portable-rep.scm │ │ ├── rep.scm │ │ ├── runtime-bitstrings.scm │ │ ├── runtime-collections-array.scm │ │ ├── runtime-collections-deque.scm │ │ ├── runtime-collections-generic1.scm │ │ ├── runtime-collections-generic2.scm │ │ ├── runtime-collections-iterate.scm │ │ ├── runtime-collections-list.scm │ │ ├── runtime-collections-range.scm │ │ ├── runtime-collections-string.scm │ │ ├── runtime-collections-table.scm │ │ ├── runtime-collections-vector.scm │ │ ├── runtime-collections.scm │ │ ├── runtime-exceptions.scm │ │ ├── runtime-functions.scm │ │ ├── runtime-internal.scm │ │ ├── runtime-methods.scm │ │ ├── runtime-top.scm │ │ ├── runtime.scm │ │ ├── scc-rep.scm │ │ ├── scc-specific.scm │ │ ├── support.scm │ │ └── thomas.sf │ └── thomas.sf ├── gambit │ ├── README │ ├── compile │ ├── dylan-examples.output │ ├── gambit-specific.scm │ ├── hash.scm │ ├── poplat.scm │ ├── restart-example.dyl │ └── src │ │ ├── class-structure.scm │ │ ├── class.scm │ │ ├── common.scm │ │ ├── comp-class.scm │ │ ├── comp-exc.scm │ │ ├── comp-method.scm │ │ ├── comp-sf.scm │ │ ├── comp-util.scm │ │ ├── comp.scm │ │ ├── compiler.scm │ │ ├── dynwnd.scm │ │ ├── generic.scm │ │ ├── hash.scm │ │ ├── implementation-specific │ │ ├── implementation-specific.scm │ │ ├── load-compiler.scm │ │ ├── load-runtime.scm │ │ ├── load-thomas.scm │ │ ├── mit-rep.scm │ │ ├── mit-specific.scm │ │ ├── msort.scm │ │ ├── poplat.scm │ │ ├── portable-rep.scm │ │ ├── record.scm │ │ ├── rep.scm │ │ ├── runtime-bitstrings.scm │ │ ├── runtime-collections-array.scm │ │ ├── runtime-collections-deque.scm │ │ ├── runtime-collections-generic1.scm │ │ ├── runtime-collections-generic2.scm │ │ ├── runtime-collections-iterate.scm │ │ ├── runtime-collections-list.scm │ │ ├── runtime-collections-range.scm │ │ ├── runtime-collections-string.scm │ │ ├── runtime-collections-table.scm │ │ ├── runtime-collections-vector.scm │ │ ├── runtime-collections.scm │ │ ├── runtime-exceptions.scm │ │ ├── runtime-functions.scm │ │ ├── runtime-internal.scm │ │ ├── runtime-methods.scm │ │ ├── runtime-top.scm │ │ ├── runtime.scm │ │ ├── scc-rep.scm │ │ ├── scc-specific.scm │ │ └── support.scm └── scc │ ├── DECstation.o │ ├── README │ ├── aftergc.sc │ ├── callcc.c │ ├── dylan-examples.output │ ├── dynwind.sc │ ├── hash.sc │ ├── heap.c │ ├── heap.h │ ├── implementation-specific │ ├── main.sc │ ├── makefile │ ├── mit.sc │ ├── msort.sc │ ├── poplat.sc │ ├── record.sc │ ├── scc-rep.scm │ ├── scc-specific.sc │ ├── scinit.c │ └── src │ ├── class-structure.scm │ ├── class.scm │ ├── common.scm │ ├── comp-class.scm │ ├── comp-exc.scm │ ├── comp-method.scm │ ├── comp-sf.scm │ ├── comp-util.scm │ ├── comp.scm │ ├── compiler.scm │ ├── gambit-specific.scm │ ├── generic.scm │ ├── implementation-specific │ ├── load-compiler.scm │ ├── load-runtime.scm │ ├── load-thomas.scm │ ├── mit-rep.scm │ ├── mit-specific.scm │ ├── portable-rep.scm │ ├── rep.scm │ ├── runtime-bitstrings.scm │ ├── runtime-collections-array.scm │ ├── runtime-collections-deque.scm │ ├── runtime-collections-generic1.scm │ ├── runtime-collections-generic2.scm │ ├── runtime-collections-iterate.scm │ ├── runtime-collections-list.scm │ ├── runtime-collections-range.scm │ ├── runtime-collections-string.scm │ ├── runtime-collections-table.scm │ ├── runtime-collections-vector.scm │ ├── runtime-collections.scm │ ├── runtime-exceptions.scm │ ├── runtime-functions.scm │ ├── runtime-internal.scm │ ├── runtime-methods.scm │ ├── runtime-top.scm │ ├── runtime.scm │ ├── scc-rep.scm │ ├── scc-specific.scm │ └── support.scm ├── portable ├── dynwind.scm ├── hash.scm ├── msort.scm ├── poplat.scm └── record.scm └── src ├── README ├── class-structure.scm ├── class.scm ├── common.scm ├── comp-class.scm ├── comp-exc.scm ├── comp-method.scm ├── comp-sf.scm ├── comp-util.scm ├── comp.scm ├── compiler.scm ├── generic.scm ├── load-compiler.scm ├── load-runtime.scm ├── load-thomas.scm ├── portable-rep.scm ├── runtime-bitstrings.scm ├── runtime-collections-array.scm ├── runtime-collections-deque.scm ├── runtime-collections-generic1.scm ├── runtime-collections-generic2.scm ├── runtime-collections-iterate.scm ├── runtime-collections-list.scm ├── runtime-collections-range.scm ├── runtime-collections-string.scm ├── runtime-collections-table.scm ├── runtime-collections-vector.scm ├── runtime-collections.scm ├── runtime-exceptions.scm ├── runtime-functions.scm ├── runtime-internal.scm ├── runtime-methods.scm ├── runtime-top.scm ├── runtime.scm └── support.scm /DIFFERENCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/DIFFERENCES -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/README -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/RELEASE -------------------------------------------------------------------------------- /dylan-examples.dyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/dylan-examples.dyl -------------------------------------------------------------------------------- /examples-from-book.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/examples-from-book.text -------------------------------------------------------------------------------- /full-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/full-test.scm -------------------------------------------------------------------------------- /kits/MIT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/README -------------------------------------------------------------------------------- /kits/MIT/dylan-examples.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/dylan-examples.output -------------------------------------------------------------------------------- /kits/MIT/mit-rep.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/mit-rep.scm -------------------------------------------------------------------------------- /kits/MIT/mit-specific.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/mit-specific.scm -------------------------------------------------------------------------------- /kits/MIT/restart-example.dyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/restart-example.dyl -------------------------------------------------------------------------------- /kits/MIT/src/class-structure.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class-structure.scm -------------------------------------------------------------------------------- /kits/MIT/src/class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class.scm -------------------------------------------------------------------------------- /kits/MIT/src/common.scm: -------------------------------------------------------------------------------- 1 | ../../../src/common.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp-class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-class.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp-exc.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-exc.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp-method.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-method.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp-sf.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-sf.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp-util.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-util.scm -------------------------------------------------------------------------------- /kits/MIT/src/comp.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp.scm -------------------------------------------------------------------------------- /kits/MIT/src/compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/compiler.scm -------------------------------------------------------------------------------- /kits/MIT/src/gambit-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/gambit-specific.scm -------------------------------------------------------------------------------- /kits/MIT/src/generic.scm: -------------------------------------------------------------------------------- 1 | ../../../src/generic.scm -------------------------------------------------------------------------------- /kits/MIT/src/implementation-specific: -------------------------------------------------------------------------------- 1 | ../mit-specific.scm -------------------------------------------------------------------------------- /kits/MIT/src/load-compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-compiler.scm -------------------------------------------------------------------------------- /kits/MIT/src/load-runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-runtime.scm -------------------------------------------------------------------------------- /kits/MIT/src/load-thomas.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-thomas.scm -------------------------------------------------------------------------------- /kits/MIT/src/mit-rep.scm: -------------------------------------------------------------------------------- 1 | ../mit-rep.scm -------------------------------------------------------------------------------- /kits/MIT/src/portable-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/portable-rep.scm -------------------------------------------------------------------------------- /kits/MIT/src/rep.scm: -------------------------------------------------------------------------------- 1 | ../mit-rep.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-bitstrings.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-bitstrings.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-array.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-array.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-deque.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-deque.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-generic1.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic1.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-generic2.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic2.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-iterate.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-iterate.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-list.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-list.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-range.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-range.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-string.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-string.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-table.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-table.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections-vector.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-vector.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-collections.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-exceptions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-exceptions.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-functions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-functions.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-internal.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-internal.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-methods.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-methods.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime-top.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-top.scm -------------------------------------------------------------------------------- /kits/MIT/src/runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime.scm -------------------------------------------------------------------------------- /kits/MIT/src/scc-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-rep.scm -------------------------------------------------------------------------------- /kits/MIT/src/scc-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-specific.scm -------------------------------------------------------------------------------- /kits/MIT/src/support.scm: -------------------------------------------------------------------------------- 1 | ../../../src/support.scm -------------------------------------------------------------------------------- /kits/MIT/src/thomas.sf: -------------------------------------------------------------------------------- 1 | ../thomas.sf -------------------------------------------------------------------------------- /kits/MIT/thomas.sf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/MIT/thomas.sf -------------------------------------------------------------------------------- /kits/gambit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/README -------------------------------------------------------------------------------- /kits/gambit/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/compile -------------------------------------------------------------------------------- /kits/gambit/dylan-examples.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/dylan-examples.output -------------------------------------------------------------------------------- /kits/gambit/gambit-specific.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/gambit-specific.scm -------------------------------------------------------------------------------- /kits/gambit/hash.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/hash.scm -------------------------------------------------------------------------------- /kits/gambit/poplat.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/poplat.scm -------------------------------------------------------------------------------- /kits/gambit/restart-example.dyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/gambit/restart-example.dyl -------------------------------------------------------------------------------- /kits/gambit/src/class-structure.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class-structure.scm -------------------------------------------------------------------------------- /kits/gambit/src/class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class.scm -------------------------------------------------------------------------------- /kits/gambit/src/common.scm: -------------------------------------------------------------------------------- 1 | ../../../src/common.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp-class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-class.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp-exc.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-exc.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp-method.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-method.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp-sf.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-sf.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp-util.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-util.scm -------------------------------------------------------------------------------- /kits/gambit/src/comp.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp.scm -------------------------------------------------------------------------------- /kits/gambit/src/compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/compiler.scm -------------------------------------------------------------------------------- /kits/gambit/src/dynwnd.scm: -------------------------------------------------------------------------------- 1 | ../../../portable/dynwnd.sc -------------------------------------------------------------------------------- /kits/gambit/src/generic.scm: -------------------------------------------------------------------------------- 1 | ../../../src/generic.scm -------------------------------------------------------------------------------- /kits/gambit/src/hash.scm: -------------------------------------------------------------------------------- 1 | ../hash.scm -------------------------------------------------------------------------------- /kits/gambit/src/implementation-specific: -------------------------------------------------------------------------------- 1 | ../gambit-specific.scm -------------------------------------------------------------------------------- /kits/gambit/src/implementation-specific.scm: -------------------------------------------------------------------------------- 1 | ../gambit-specific.scm -------------------------------------------------------------------------------- /kits/gambit/src/load-compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-compiler.scm -------------------------------------------------------------------------------- /kits/gambit/src/load-runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-runtime.scm -------------------------------------------------------------------------------- /kits/gambit/src/load-thomas.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-thomas.scm -------------------------------------------------------------------------------- /kits/gambit/src/mit-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/mit-rep.scm -------------------------------------------------------------------------------- /kits/gambit/src/mit-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/mit-specific.scm -------------------------------------------------------------------------------- /kits/gambit/src/msort.scm: -------------------------------------------------------------------------------- 1 | ../../../portable/msort.sc -------------------------------------------------------------------------------- /kits/gambit/src/poplat.scm: -------------------------------------------------------------------------------- 1 | ../poplat.scm -------------------------------------------------------------------------------- /kits/gambit/src/portable-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/portable-rep.scm -------------------------------------------------------------------------------- /kits/gambit/src/record.scm: -------------------------------------------------------------------------------- 1 | ../record.scm -------------------------------------------------------------------------------- /kits/gambit/src/rep.scm: -------------------------------------------------------------------------------- 1 | portable-rep.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-bitstrings.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-bitstrings.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-array.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-array.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-deque.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-deque.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-generic1.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic1.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-generic2.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic2.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-iterate.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-iterate.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-list.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-list.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-range.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-range.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-string.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-string.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-table.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-table.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections-vector.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-vector.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-collections.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-exceptions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-exceptions.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-functions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-functions.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-internal.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-internal.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-methods.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-methods.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime-top.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-top.scm -------------------------------------------------------------------------------- /kits/gambit/src/runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime.scm -------------------------------------------------------------------------------- /kits/gambit/src/scc-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-rep.scm -------------------------------------------------------------------------------- /kits/gambit/src/scc-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-specific.scm -------------------------------------------------------------------------------- /kits/gambit/src/support.scm: -------------------------------------------------------------------------------- 1 | ../../../src/support.scm -------------------------------------------------------------------------------- /kits/scc/DECstation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/DECstation.o -------------------------------------------------------------------------------- /kits/scc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/README -------------------------------------------------------------------------------- /kits/scc/aftergc.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/aftergc.sc -------------------------------------------------------------------------------- /kits/scc/callcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/callcc.c -------------------------------------------------------------------------------- /kits/scc/dylan-examples.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/dylan-examples.output -------------------------------------------------------------------------------- /kits/scc/dynwind.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/dynwind.sc -------------------------------------------------------------------------------- /kits/scc/hash.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/hash.sc -------------------------------------------------------------------------------- /kits/scc/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/heap.c -------------------------------------------------------------------------------- /kits/scc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/heap.h -------------------------------------------------------------------------------- /kits/scc/implementation-specific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/implementation-specific -------------------------------------------------------------------------------- /kits/scc/main.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/main.sc -------------------------------------------------------------------------------- /kits/scc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/makefile -------------------------------------------------------------------------------- /kits/scc/mit.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/mit.sc -------------------------------------------------------------------------------- /kits/scc/msort.sc: -------------------------------------------------------------------------------- 1 | ../../portable/msort.scm -------------------------------------------------------------------------------- /kits/scc/poplat.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/poplat.sc -------------------------------------------------------------------------------- /kits/scc/record.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/record.sc -------------------------------------------------------------------------------- /kits/scc/scc-rep.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/scc-rep.scm -------------------------------------------------------------------------------- /kits/scc/scc-specific.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/scc-specific.sc -------------------------------------------------------------------------------- /kits/scc/scinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/kits/scc/scinit.c -------------------------------------------------------------------------------- /kits/scc/src/class-structure.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class-structure.scm -------------------------------------------------------------------------------- /kits/scc/src/class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/class.scm -------------------------------------------------------------------------------- /kits/scc/src/common.scm: -------------------------------------------------------------------------------- 1 | ../../../src/common.scm -------------------------------------------------------------------------------- /kits/scc/src/comp-class.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-class.scm -------------------------------------------------------------------------------- /kits/scc/src/comp-exc.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-exc.scm -------------------------------------------------------------------------------- /kits/scc/src/comp-method.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-method.scm -------------------------------------------------------------------------------- /kits/scc/src/comp-sf.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-sf.scm -------------------------------------------------------------------------------- /kits/scc/src/comp-util.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp-util.scm -------------------------------------------------------------------------------- /kits/scc/src/comp.scm: -------------------------------------------------------------------------------- 1 | ../../../src/comp.scm -------------------------------------------------------------------------------- /kits/scc/src/compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/compiler.scm -------------------------------------------------------------------------------- /kits/scc/src/gambit-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/gambit-specific.scm -------------------------------------------------------------------------------- /kits/scc/src/generic.scm: -------------------------------------------------------------------------------- 1 | ../../../src/generic.scm -------------------------------------------------------------------------------- /kits/scc/src/implementation-specific: -------------------------------------------------------------------------------- 1 | ../implementation-specific -------------------------------------------------------------------------------- /kits/scc/src/load-compiler.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-compiler.scm -------------------------------------------------------------------------------- /kits/scc/src/load-runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-runtime.scm -------------------------------------------------------------------------------- /kits/scc/src/load-thomas.scm: -------------------------------------------------------------------------------- 1 | ../../../src/load-thomas.scm -------------------------------------------------------------------------------- /kits/scc/src/mit-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/mit-rep.scm -------------------------------------------------------------------------------- /kits/scc/src/mit-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/mit-specific.scm -------------------------------------------------------------------------------- /kits/scc/src/portable-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/portable-rep.scm -------------------------------------------------------------------------------- /kits/scc/src/rep.scm: -------------------------------------------------------------------------------- 1 | ../scc-rep.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-bitstrings.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-bitstrings.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-array.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-array.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-deque.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-deque.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-generic1.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic1.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-generic2.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-generic2.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-iterate.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-iterate.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-list.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-list.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-range.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-range.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-string.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-string.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-table.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-table.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections-vector.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections-vector.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-collections.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-collections.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-exceptions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-exceptions.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-functions.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-functions.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-internal.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-internal.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-methods.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-methods.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime-top.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime-top.scm -------------------------------------------------------------------------------- /kits/scc/src/runtime.scm: -------------------------------------------------------------------------------- 1 | ../../../src/runtime.scm -------------------------------------------------------------------------------- /kits/scc/src/scc-rep.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-rep.scm -------------------------------------------------------------------------------- /kits/scc/src/scc-specific.scm: -------------------------------------------------------------------------------- 1 | ../../../src/scc-specific.scm -------------------------------------------------------------------------------- /kits/scc/src/support.scm: -------------------------------------------------------------------------------- 1 | ../../../src/support.scm -------------------------------------------------------------------------------- /portable/dynwind.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/portable/dynwind.scm -------------------------------------------------------------------------------- /portable/hash.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/portable/hash.scm -------------------------------------------------------------------------------- /portable/msort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/portable/msort.scm -------------------------------------------------------------------------------- /portable/poplat.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/portable/poplat.scm -------------------------------------------------------------------------------- /portable/record.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/portable/record.scm -------------------------------------------------------------------------------- /src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/README -------------------------------------------------------------------------------- /src/class-structure.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/class-structure.scm -------------------------------------------------------------------------------- /src/class.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/class.scm -------------------------------------------------------------------------------- /src/common.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/common.scm -------------------------------------------------------------------------------- /src/comp-class.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp-class.scm -------------------------------------------------------------------------------- /src/comp-exc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp-exc.scm -------------------------------------------------------------------------------- /src/comp-method.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp-method.scm -------------------------------------------------------------------------------- /src/comp-sf.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp-sf.scm -------------------------------------------------------------------------------- /src/comp-util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp-util.scm -------------------------------------------------------------------------------- /src/comp.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/comp.scm -------------------------------------------------------------------------------- /src/compiler.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/compiler.scm -------------------------------------------------------------------------------- /src/generic.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/generic.scm -------------------------------------------------------------------------------- /src/load-compiler.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/load-compiler.scm -------------------------------------------------------------------------------- /src/load-runtime.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/load-runtime.scm -------------------------------------------------------------------------------- /src/load-thomas.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/load-thomas.scm -------------------------------------------------------------------------------- /src/portable-rep.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/portable-rep.scm -------------------------------------------------------------------------------- /src/runtime-bitstrings.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-bitstrings.scm -------------------------------------------------------------------------------- /src/runtime-collections-array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-array.scm -------------------------------------------------------------------------------- /src/runtime-collections-deque.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-deque.scm -------------------------------------------------------------------------------- /src/runtime-collections-generic1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-generic1.scm -------------------------------------------------------------------------------- /src/runtime-collections-generic2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-generic2.scm -------------------------------------------------------------------------------- /src/runtime-collections-iterate.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-iterate.scm -------------------------------------------------------------------------------- /src/runtime-collections-list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-list.scm -------------------------------------------------------------------------------- /src/runtime-collections-range.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-range.scm -------------------------------------------------------------------------------- /src/runtime-collections-string.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-string.scm -------------------------------------------------------------------------------- /src/runtime-collections-table.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-table.scm -------------------------------------------------------------------------------- /src/runtime-collections-vector.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections-vector.scm -------------------------------------------------------------------------------- /src/runtime-collections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-collections.scm -------------------------------------------------------------------------------- /src/runtime-exceptions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-exceptions.scm -------------------------------------------------------------------------------- /src/runtime-functions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-functions.scm -------------------------------------------------------------------------------- /src/runtime-internal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-internal.scm -------------------------------------------------------------------------------- /src/runtime-methods.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-methods.scm -------------------------------------------------------------------------------- /src/runtime-top.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime-top.scm -------------------------------------------------------------------------------- /src/runtime.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/runtime.scm -------------------------------------------------------------------------------- /src/support.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomarx/Thomas/HEAD/src/support.scm --------------------------------------------------------------------------------