Sorry for such a long question. I have to give the context and detailed explanations, with relevant links for the curious. I need preferably hints and advice. (big patches need legal prerequisites, so I prefer hints to patches, unless you are a GCC contributor already)
A complex question related to [ab-]using GNU Make (v3.82 or 3.81), and I am giving several details. But I think it it is not entirely specific (more a "strategic design" question than a coding one, I guess). The real questions are in the last part of this long post.
Answers should probably be relevant to other self-hosting bootstrapped translators relying on GNU make to get built, so I do hope this question won't be closed on StackOverflow as too localized.
context
I am working on MELT, a high level domain specific language to extend the GCC compiler, on Linux. It is free (GPLv3) software (a branch of GCC, so MELT is legally owned by FSF), available as melt-0.9.2.b-plugin-for-gcc-4.6.tgz (so you need gcc-4.6 to build and use MELT). It is also an experimental GCC branch (I often merge GCC trunk into the MELT branch, usually several times a week). I am only (currently) interested by building it on Linux systems (mine is Debian/Sid/AMD64), using GNU make (and autogen, even autotools, with help from other GNU tools like awk etc) when needed.
MELT is a domain specific language (with lisp-like syntax) translated to C. So a source foo.melt file is usually translated into several generated C files like foo.c, foo+01.c foo+02.c and foo+meltdesc.c, then compiled into a single foo.so module. The foo.c is the primary C source file, the foo+01.c & foo+02.c ... are secondary C source files. The foo+meltdesc.c file is a meta-data descriptive file.
See my DSL2011 paper for a detailed description of the MELT language. It is bootstrapped, and implemented in itself. From a user's point of view, MELT is a GCC [meta-] plugin melt.so which dlopen-s several shared object files (which I call MELT modules).
MELT can also be built as a GCC branch, but I'm focusing here on the plugin. However, that implies that I don't want to use external tools that GCC don't use already. So for instance switching to some other builder like omake or cmake is sadly not an option.
MELT has several components:
The MELT runtime (notably its garbage collector and utilities), from file melt-runtime.c (which
#include-s several other files, some of which are generated) compiled intomelt.soGCC [meta-] plugin.The MELT translator, which is coded in MELT itself. The real source files (the ones I am working on) are nine
warmelt-*.meltfiles (total length = 43KLOC) inmelt/directory, i.e.warmelt-first.meltwarmelt-base.melt...warmelt-macro.melt....warmelt-outobj.meltwarmelt-modes.melt, and the order of these files matter a lot; since you (conceptually) need a MELT translator to translate the MELT translator (a self-hosting bootstrapping compiler situation), the "older" translated form (as generated C code) is kept in thesvnbranch and distributed in the source tarball of the plugin as 49melt/generated/warmelt-*.cfiles with a total of 1.4 million lines of generated C code. I don't always update the generated C code in the source repository (in particular to avoid stressing thesvnserver); from time to time I do (inside the MELT branch) amake upgrade-warmeltto copy the newly generated C files into the source code repository. This also generates and updates filesmelt/generated/meltrunsup.handmelt/generated/meltrunsup-inc.cwhich are#include-d by the runtime (withmeltrunsup.halso included bymelt-run.hwhich is included by almost every MELT C file, including the generated ones).
The MELT translator avoid to blindly overwrite a generated file: when a C file is generated, it is output into a temporary file, and the runtime copies it to its destination only if it is different. This is to helpmakewhich uses timestamp (not content) of files.Various MELT utilities and extensions in some
melt/xtramelt-*.meltfiles (total 7.6KLOC) which notably contain some additional GCC passes able to statically analyse themelt-runtime.ccode for conformance to its peculiar coding conventions, required by the MELT copying garbage collector.
notice that the generated C translated form of these files don't need to be kept in the source repository, because it is not part of the MELT translator.
The MELT system is able to generate C code, compile it by forking a make into a *.so shared object (which I call a MELT module), and dlopen it, all from the same cc1 process. However, for the purpose of this question, we don't use the MELT ability to run internally a make; our building process is thru makefile and include-d *.mk files with recursive $(MAKE).
For the curious, the MELT plugin source files are automatically extracted from the MELT branch using the contrib/make-melt-source-tar.sh script which I run to make a plugin release.
building MELT
From the point of view of the user building and installing the MELT plugin, building is done by just running a make which uses MELT-Plugin-Makefile as its symlink-ed Makefile. Installing is done by running make install DESTDIR=/tmp/sometempdirinstall then copying, as root, that directory into /usr/lib/gcc/... Detailed instructions to build the Melt plugin are in README-MELT-PLUGIN file.
how MELT gets built
Since MELT is a bootstrapped translator, its building process requires its source melt/warmelt-*.melt files to be translated into warmelt-*.c files, which are then compiled into warmelt-*.so modules. A MELT source file like warmelt-normal.melt is translated into several warmelt-normal*.c files which are compiled and linked into a single warmelt-normal.so module. The translation from *.melt to *.c is done by the several warmelt-*.so modules (so there is a chicken and egg issue, hence it is required to have some old form of the translated *.c files).
In more details, the MELT translator is built in several stages; roughly speaking:
the
melt.somodule is built. It is used in every stage below. Technically, Melt is not a GCC front-end, so to translate a*.meltfile into generated*.cfiles you need to compile withgcc-4.6 -fplugin=meltand many other flags anempty.cfile. The translation of*.meltto*.chappens as an important side-effect of this apparently useless compilation ofempty.cthe stage 0 is the compilation of the old
melt/generated/warmelt*.cintomelt-stage0-quicklybuilt/warmelt*quicklybuilt.somodulesthe first stage uses
melt-stage0-quicklybuilt/warmelt*.somodules from stage 0 to translatewarmelt*.meltfiles intomelt-stage1/warmelt*.cfiles, then compiled intomelt-stage1/warmelt*quicklybuilt.somodules
themelt-stage1/warmelt*.care usually different from the oldmelt/generated/warmelt*.cfiles, because they are translated from different versions of*.meltfiles.the second stage uses
melt-stage1/warmelt*quicklybuilt.somodules from stage 1 to translatewarmelt*.meltfiles intomelt-stage2/warmelt*.cfiles, then intomelt-stage2/warmelt*quicklybuilt.somodules
themelt-stage2/warmelt*.ccan be different from themelt-stage1/warmelt*.cfiles, because they are translated by a different version of the MELT translator operating on the samewarmelt*.meltfiles.the third stage uses
melt-stage2/warmelt*quicklybuilt.somodules from stage 2 to translatewarmelt*.meltfiles intomelt-stage3/warmelt*.cfiles, then intomelt-stage3/warmelt*quicklybuilt.somodules. Themelt-stage3/warmelt*.cfiles should usually have the same content as theirmelt-stage2/warmelt*.ccounterpart.
In very rare occasions, the stage 2 and stage 3 generated C files could be slightly different (because of meta-bugs or meta-optimisations in the MELT translator)a final stage produces
melt-sources/*.c(where the*.meltare also copied) andmelt-modules/*.somodules in various forms likemelt-modules/warmelt-base.optimized.soandmelt-modules/warmelt-base.quicklybuilt.so. These shared objects vary only in the compilation flags passed to compile their generates C source. Themelt-modules/directory also contain thextramelt*.somodules for Melt utilities and extensions not used by the Melt translator.the installation procedure copies the
melt-modules/andmelt-sources/directory to their installed target place and also generates documentation (notably from*.meltsource files).
The stages above are in file melt-build.mk (inside the source repository) which is generated by autogen from melt-build.tpl and melt-build.def. Our Makefile has an include melt-build.mk line.
dependencies on the content, not on the file timestamp
An important feature is that MELT modules should be rebuilt only when the content of their source files are changing (not if the timestamps of the files change). When MELT generates a C file, it takes care to not overwrite the generated file if its content has not changed (by writing into a temporary file, then comparing that temporary file with the older version). We use md5sum hashes of source files in the generated object file paths to help with that.
For the curious the omake building system also conceptually works on contents. We can't use it inside a GCC thing.
multiple degree dependencies (N → M) and intra-stage dependencies
An issue in Melt (and every self-hosted bootstrapped translators or compilers) is that all the generated warmelt*.c files depend upon all the source warmelt*.melt files; for instance a change in warmelt-macro.melt (providing the predefined "macros" in Lisp parlance, that is the predefined if, let, lambda etc... syntax of the MELT language) may affect how the warmelt-genobj.melt is translated into warmelt-genobj*.c files, even if the warmelt-genobj.melt file has not been changed.
A further complication is that within a given stage, we actually use some modules in that stage (and not the preceding stage) to generate further C files in the same stage. To be specific, we use melt-stage2/warmelt-base.quicklybuilt.so to generate melt-stage2/warmelt-macro.c from warmelt-macro.melt. This is required because a change in e.g. some warmelt-base.melt file may be needed by the warmelt-macro.melt file, and sometimes we won't be able to build MELT without such a intra-stage dependency.
So our generated melt-build.mk file contains (around line 1590) code like
#@ from melt-build.tpl line 267
### the C source of melt-stage2 for warmelt-macro
melt-stage2/warmelt-macro.c melt-stage2/warmelt-macro+meltdesc.c: \
$(melt_make_source_dir)/warmelt-macro.melt \
$(MELT_TRANSLATOR_SOURCE) \
| melt-stage1.stamp melt-stage1/warmelt.modlis \
$(realpath melt-stage2/warmelt-first.quicklybuilt.so) \
$(realpath melt-stage2/warmelt-base.quicklybuilt.so) \
$(realpath melt-stage2/warmelt-debug.quicklybuilt.so) \
empty-file-for-melt.c \
melt-run.h melt-runtime.h melt-predef.h \
$(melt_make_cc1_dependency)
## from melt-build.tpl line 281
@echo generating $< for melt-stage2
@rm -f $(notdir $(basename $@)+melt-stage2.args)
@echo $(MELTCCFILE1ARGS) $(meltarg_init)=\
melt-stage2/warmelt-first.quicklybuilt:\
melt-stage2/warmelt-base.quicklybuilt:\
melt-stage2/warmelt-debug.quicklybuilt:\
melt-stage1/warmelt-macro.quicklybuilt:\
melt-stage1/warmelt-normal.quicklybuilt:\
melt-stage1/warmelt-normatch.quicklybuilt:\
melt-stage1/warmelt-genobj.quicklybuilt:\
melt-stage1/warmelt-outobj.quicklybuilt:\
melt-stage1/warmelt-modes.quicklybuilt > warmelt-macro+melt-stage2.args-tmp
@echo $(meltarg_arg)=$< -frandom-seed=$(shell md5sum $< | cut -b-24) \
$(meltarg_module_path)=$(realpath .):$(realpath melt-stage2):\
$(realpath melt-stage1):$(realpath $(melt_make_module_dir)) \
$(meltarg_source_path)=$(realpath .):$(realpath melt-stage2):\
$(realpath melt-stage1):$(realpath $(melt_make_source_dir)):\
$(realpath $(melt_make_source_dir)/generated):$(realpath $(melt_source_dir)) \
$(meltarg_output)=$(basename $@) $(meltarg_workdir)=melt-workdir \
empty-file-for-melt.c >> warmelt-macro+melt-stage2.args-tmp
@mv warmelt-macro+melt-stage2.args-tmp warmelt-macro+melt-stage2.args
@echo; echo; echo -n warmelt-macro+melt-stage2.args: ; \
cat warmelt-macro+melt-stage2.args ; echo; echo; \
echo "***** doing " $@ from melt-build.tpl line 297
$(melt_make_cc1) @warmelt-macro+melt-stage2.args
@ls -l melt-stage2/warmelt-macro.c || ( echo "*@*MISSING " \
melt-stage2/warmelt-macro.c from melt-build.tpl line 299 ; exit 1 )
You can guess why I have to generate melt-built.mk which has 4318 lines, from melt-build.def (of 111 lines) and melt-build.tpl of 791 lines. The generated file is buggy.
The compilation of generated *.cfiles into *.so modules is done thru the (hand-written) melt-module.mk file, also included. Its peculiarity is that it compiles generated warmelt-*.c file into *.pic.o files whose path contain the md5sum of the C file. For instance melt-stage1/warmelt-base.c is compiled into melt-workdir/warmelt-base.724d085a3186970221355e5617435b2d.quicklybuilt.pic.o because 724d085a318... is the md5 of warmelt-base.c. Likewise the linked module is melt-workdir/warmelt-base.bd948375176e0f591fd7ad7d633a6474.quicklybuilt.so (which gets symlinked) where bd948375176e0f.. is the md5 of the catenation of warmelt-base.c warmelt-base+0[12].c ; the MELT system computes and checks these md5sum, and writes them in (and parses them from!) warmelt-base+meltdesc.c. This is done because MELT cares about the content of generated C files, not about their timestamp.
The generated *+meltdesc.c files are actually meta-data describing modules. For example
melt-stage2/warmelt-base+meltdesc.c is exactly
/** GENERATED MELT DESCRIPTOR FILE melt-stage2/warmelt-base+meltdesc.c -
** NEVER EDIT OR MOVE THIS, IT IS GENERATED & PARSED! **/
/* These identifiers are generated in warmelt-outobj.melt & handled
in melt-runtime.c carefully. */
/* version of the GCC compiler & MELT runtime generating this */
const char melt_genversionstr[]="4.6 20111217 () [MELT plugin] MELT_0.9.2.b";
const char melt_versionmeltstr[]="0.9.2.b [melt-branch_revision_182126]";
/* source name & real path of the module */
/*MELTMODULENAME melt-stage2/warmelt-base */
const char melt_modulename[]="warmelt-base";
const char melt_modulerealpath[]=
"/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/melt-modules/warmelt-base";
/* MELT generation timestamp */
/*MELT BOOTSTRAP*/
const char melt_gen_timestamp[]="Wed Jan 4 14:13:14 2012 CET";
const long long melt_gen_timenum=1325682794;
const char melt_build_timestamp[]= __DATE__ "@" __TIME__;
/* hash of preprocessed melt-run.h generating this */
const char melt_prepromd5meltrun[]=
"d41d8cd98f00b204e9800998ecf8427e";
/* hexmd5checksum of primary C file */
const char melt_primaryhexmd5[]=
"724d085a3186970221355e5617435b2d";
/* hexmd5checksum of secondary C files */
const char* const melt_secondaryhexmd5tab[]={
/*nosecfile*/ (const char*)0,
/*sechexmd5checksum melt-stage2/warmelt-base+01.c #1 */
"5b4cfacc0b6c09174c0d44b3dff44b13",
/*sechexmd5checksum melt-stage2/warmelt-base+02.c #2 */
"733d40818fe955459ddaf4325a55a1f8",
/*nosecfile*/ (const char*)0,
(const char*)0 };
/* last index of secondary files */
const int melt_lastsecfileindex=2;
Conceptually, the MELT system is loading a sequence of generated *.c files (by parsing the very simple warmelt-base+meltdesc.c file) and handle the corresponding *.so module as a cached form of it, which it builds if it is missing, and then dlopen it.
However, for the MELT user, the building procedure works fine enough, in particular because the MELT user don't work on the MELT translator, where all the build mess happens. I am the main person suffering from MELT make deficiencies (because I work on the translator).
bugs and questions
A difficulty when hacking my Makefile-s (or even worse, GCC ones) is that building the entire system take quite a long time. The MELT system needs nearly 8 minutes to be built.
Of course, the issues are related to the self-hosting boostrapped translator nature of MELT and the (N → M) dependencies, the multi-staging; the intra-stage dependencies
Parallel make
First question & my bug: my build don't work with parallel make, e.g. make -j2 ?
Any hints on how to debug parallel make ? I would expect that a parallel make would compile at least in parallel the various melt-stage2/warmelt-*.c files.
Useless make
Second question & my bug: when running again make just after a successful make, it takes three minutes (on the MELT branch) to understand that nothing has to be done (even with using ccache).
Any hints on improving useless multi-stage building? so that when doing two consecutive
make
make
the second one should terminate in less than a second?
perhaps making timestamp (??) files, but I don't understand how and when
autoconfin the MELT plugin (and yes, I hateautoconfeven more than you do; and yes, it's GCC!). Ok, I'll read again P.Miller's Recursive Make considered harmful. But I'm spending time because I regenerate files which I should not. – Basile Starynkevitch Jan 4 at 14:10*+meltdesc.cin two files, one for the timestamps i.e.melt_gen_timestampetc, to go into a*+meltime.cfile, and the other for the rest of the meta data (kept in the same*+meltdesc.c). So that this*+meltdesc.cwon't change, and won't be overwritten. Then mymakerules would depend upon that*+meltdesc.c(but not much on the*+meltime.cfile). – Basile Starynkevitch Jan 4 at 14:40