-
Make the necessary changes to the scripts, runtime system, Basis Library implementation, and compiler.
-
Get the regressions working using a cross compiler.
-
Cross compile MLton and bootstrap on the target.
MLton has a native code generator only for X86, so, if you are porting to another architecture, you must use the C code generator. These notes do not cover building a new native code generator.
What code to change
-
Scripts
-
In bin/platform, add a new case to handle the output of uname.
-
In bin/upgrade-basis,
-
add new stubs in structure MLton.Platform.OS.
-
add a new case to set $os.
-
add a new case to set MLton.Platform.Arch.t and all
-
Runtime system
The goal of this step is to be able to successfully run make in the runtime directory on the target machine.
-
In platform.h, add a new case to include platform/<os>.h
-
In platform/<os>.[ch], implement any platform-dependent functions that the runtime needs.
-
In basis/Real/class.c, add the architecture specific code to implement Real<N>.class (i.e. to determine the class of a floating point number. It would be nice to implement this code (portably) in the Basis Library implementation some day.
-
Add rounding mode control to IEEEReal.c for the new arch.
-
Compile and install the GnuMP. This varies from platform to platform. In platform/<os>.h, you need to include the appropriate gmp.h.
-
Make sure the definition of ReturnToC in include/x86-main.h is correct.
-
Basis Library implementation (basis-library/*)
-
In misc/primitive.sml,
-
If necessary, add a new variant to the MLton.Platform.Arch.t datatype.
-
If necessary, add a new variant to the MLton.Platform.OS.t datatype.
-
modify the constants that define host to match with MLton_Platform_OS_host, as set in runtime/platform/<os>.h.
-
In mlton/platform.{sig,sml} add a new variant.
-
Look at all the uses of MLton.Platform in the Basis Library implementation and see if you need to do anything special. You might use the following command to see where to look.
find basis-library -type f | xargs grep 'MLton\.Platform'
If in doubt, leave the code alone and wait to see what happens when you run the regression tests. Here's some that will likely need to be modified. -
real/pack-real.sml: definition of isBigEndian
-
Compiler
-
In lib/mlton-stubs/, update mlton.sml and platform.sig to add any new variants.
-
In mlton/main/main.fun, add code to set linkWithGmp.
Running the regressions with a cross compiler
When porting to a new platform, it is always best to get all (or as many as possible) of the regressions working before moving to a self compile. It is easiest to do this by modifying and rebuilding the compiler on a working machine and then running the regressions with a cross compiler. It is not easy to build a gcc cross compiler, so we recommend generating the C and assembly on a working machine (using MLton's -target and -stop g flags, copying the generated files to the target machine, then compiling and linking there.
-
Remake the compiler on a working machine.
-
Use bin/add-cross to add support for the new target. In particular, this should create build/lib/<target>/ with the platform-specific necessary cross-compilation information.
-
Run the regression tests with the cross-compiler. To cross-compile all the tests, do
bin/regression -cross <target>
This will create all the executables. Then, copy bin/regression and the regression directory to the target machine, and dobin/regression -run-only
This should run all the tests.
Repeat this step, interleaved with appropriate compiler modifications, until all the regressions pass.
Bootstrap
Once you've got all the regressions working, you can build MLton for the new target. As with the regressions, the idea for bootstrapping is to generate the C and assembly on a working machine, copy it to the target machine, and then compile and link there. Here's the sequence of steps.
-
On a working machine, with the newly rebuilt compiler, in the mlton directory, do:
mlton -stop g -target i386-mingw mlton.cm
-
Copy to the target machine.
-
On the target machine, move the libraries to the right place. That is, in build/lib, do:
rm -rf self target-map mv i386-mingw self
-
On the target machine, compile and link MLton. That is, in the mlton directory, do something like:
gcc -c -Ibuild/lib/include -O1 -w mlton/mlton.*.[cS] gcc -o build/lib/mlton-compile \ -Lbuild/lib/self \ -L/usr/local/lib \ mlton.*.o \ -lmlton -lgmp -lgdtoa -lm
-
At this point, MLton should be working and you can finish the rest of a usual make on the target machine.
make script world targetmap tools install
There are other details to get right, like making sure that the tools directories were clean so that the tools are rebuilt on the new platform, but hopefully this structure works. Once you've got a compiler on the target machine, you should test it by running all the regressions normally (i.e. without the -cross flag) and by running a couple rounds of self compiles.
Also see
The above description is based on the following emails sent to the MLton list.