1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Group is
#if defined(NEW_CM)
#if SMLNJ_VERSION * 100 + SMLNJ_MINOR_VERSION >= 11030
$/basis.cm
$/smlnj-lib.cm
#else
basis.cm
smlnj-lib.cm
#endif
#else
smlnj-lib.cm
#endif
../cm/Control.cm
../cm/Lib.cm
../cm/MLRISC.cm
../cm/ALPHA.cm
../cm/SPARC.cm
spill-table.sml
(* common type definitions *)
demo-types.sml
(* generic backend *)
demo-backend.sml
(* backend specialized to alpha instructions *)
demo-alpha.sml
(* backend specialized to sparc instructions *)
demo-sparc.sml
|