#include <name>, the library inside the binary

mc carries its standard library and its own source inside the executable, compressed, and serves them through the angle-bracket form of #include. That is what makes one downloaded binary the whole toolchain: no checkout, no include path, no install step.

// expect-exit: 0
// expect-stdout: 42
#include <sys>
#include <prelude>

i64 main() {
    i64 n = 0;
    while (n < 42) { n = n + 1; }
    putnum(n);
    write(1, "\n", 1);
    return 0;
}

<name> is served by the bundle or it is an error — there is no filesystem fallback, on purpose: <name> means "the copy that shipped with this binary", and the answer must not depend on the working directory.

$ mc prog.mc -o prog.o
prog.mc:1: unknown bundled include: no/such/module

#include "path" is unchanged: the includer's own directory first, then each [include].paths root in order.


The catalogue #

The manifest is tools/bundle.list, one NAME<TAB>PATH per line, sorted by name: 83 entries, plus mc/bundle_data, which is regenerated on demand (see below). Those are the names <...> accepts.

The system layer — pick exactly one #

namefilewhat it gives you
<sys>lib/sys.mcopen creat read write close exit as libSystem externs, plus mmap/munmap, posix_spawnp/waitpid/_NSGetEnviron, plus <io>
<sys_svc>lib/sys_svc.mcthe same five calls through #opcode svc #0x80, with no libSystem at all, plus <io>
<sys_linux>lib/sys_linux.mcthe Linux syscall layer (svc #0, number in x8) and a _start, for -nostdlib
<sys_windows>lib/sys_windows.mcthe Windows layer: the same five calls over seven kernel32 externs, plus win_setup/win_argv, for /nodefaultlib. It is the one layer that does not pull in <io> — add #include <io> after it (see ../build.md § Windows targets)
<sys_windows_start>lib/sys_windows_start.mcthe Windows entry point, mc_start, on its own: it is compiled alone into winstart.obj and linked next to every Windows program, never included. It is where main is named as an extern, which is why it cannot live in the layer a program includes
<sys_windows_host>lib/sys_windows_host.mc<sys_windows> plus the nine POSIX names only a compiler needs — _exit, chmod, mkdir, unlink, mmap, posix_spawnp, waitpid and the three posix_spawn_file_actions_* — over kernel32. It is compiled alone into mcrt.obj and linked next to a Windows-hosted mc (M38, ../guide/95-windows-host.md § 3); a program may include it to spawn a process
<io>lib/io.mcstrlen, puts, putnum — written in the language, on top of whatever write the includer declared. Never include it alone

O_RDONLY/O_WRONLY/O_CREAT/O_TRUNC live in each system layer, not in <io>, because they are per-system values (O_CREAT is 0x200 on macOS, 0x40 on Linux and 0x100 in the Windows layer, where the flags are not passed to the system at all).

The language layer #

namefilewhat it gives you
<prelude>lib/prelude.mcwhile, for, +=, -=, ++, -- — six #rules and four #tokens
<lz>src/lz.mclz_deflate / lz_inflate / lz_bound: the LZ77 the bundle itself uses, with no dependencies at all (not even the arena), so #embed … lz is usable from any program

The compiler itself #

<mc/core> is the whole compiler minus exactly one function, void user_init(). Including it and supplying that function is a taught compiler (hooks.md).

namefile
<mc/core>src/core.mc — the include list that pulls in everything below
<mc/host>not a file: the host layer of the compiler that is running. See below
<mc/host_macos>src/host_macos.mc
<mc/host_linux>src/host_linux.mc — the operating-system half, shared by both architectures
<mc/host_linux_aarch64>src/host_linux_aarch64.mc
<mc/host_linux_x86_64>src/host_linux_x86_64.mc
<mc/host_windows>src/host_windows.mc — the operating-system half, shared by both architectures
<mc/host_windows_aarch64>src/host_windows_aarch64.mc
<mc/host_windows_x86_64>src/host_windows_x86_64.mc
<mc/arena>src/arena.mc
<mc/ast>src/ast.mc
<mc/lex>src/lex.mc
<mc/parse>src/parse.mc
<mc/hooks>src/hooks.mc
<mc/gen_resolve>src/gen_resolve.mc
<mc/gen_walk>src/gen_walk.mc
<mc/machine_arm64>src/machine_arm64.mc
<mc/machine_x86_64>src/machine_x86_64.mc
<mc/objmodel>src/objmodel.mc — the object model (M41)
<mc/macho>src/macho.mc — the Mach-O writer alone since M41
<mc/backend_exe>src/backend_exe.mc
<mc/backend_coff>src/backend_coff.mc
<mc/backend_elf>src/backend_elf.mc
<mc/backend_elf_exe>src/backend_elf_exe.mc
<mc/sha256>src/sha256.mc
<mc/toml>src/toml.mc
<mc/driver>src/driver.mc
<mc/sysroot>src/sysroot.mc
<mc/sysroots>src/sysroots.mc
<mc/stubs>src/stubs.mc
<mc/limits>src/limits.mc
<mc/sandbox>src/sandbox.mcmc sandbox (M43)
<mc/sysno>src/sysno.mc — the SN_* system-call names (M43)
<mc/sysno_linux_aarch64>src/sysno_linux_aarch64.mcsys6 and the AArch64 numbers
<mc/sysno_linux_x86_64>src/sysno_linux_x86_64.mcsys6 and the x86-64 numbers
<mc/bundle>src/bundle.mc
<mc/cli>src/cli.mcmc_main() (M41)
<mc/main>src/main.mc
<mc/bundle_data>src/bundle_data.mc — see below

<mc/host>, the one name that is not an entry #

<mc/core> is host-neutral: it says nothing about posix_spawnp, the environment, the O_* values or which (os, arch) pair the binary is. That comes from a host file, and a compiler needs exactly one of them, included before the core.

<mc/host> is how a source asks for "the one that matches whichever mc is compiling me". It is resolved in src/core_bundle.mc (host_bundle_open) to host_include(), which each host file answers for itself — mc/host_macos, mc/host_linux_aarch64, mc/host_linux_x86_64, mc/host_windows_aarch64 or mc/host_windows_x86_64 — and the entry it lands on is what the once-only include list records, so writing <mc/host> and <mc/host_macos> in the same program includes the file once, not twice.

#include <mc/host>
#include <mc/core>

void user_init() { }

That is a complete compiler, and it is exactly what mc build generates for a [compiler] section (../build.md). See ../guide/90-linux-host.md for what the host layer answers.

<float> — f32 and f64 (M24) #

A LIBRARY, not a compiler feature. The stock mc has no floats: nothing here is in lib/user_default.mc, and a float program is built by a taught compiler the way examples/api and examples/lang are.

namefilewhat it gives you
<float>lib/float.mcthe compiler half: type_new for f64, f32 and f64raw, the syntax_lit handler with a correctly-rounded decimal-to-binary conversion in integers, and the eight intrinsic registrations
<machine_arm64_float>lib/machine_arm64_float.mcthe AArch64 machine, derived from arm64
<machine_x86_64_float>lib/machine_x86_64_float.mcthe SSE2 machine, derived from x86_64 and x86_64-win
<user_float>lib/user_float.mcthe three of them plus the user_init that registers them — this is what [compiler] modules names
<mc_float>lib/mc_float.mcthe same as a standalone compiler entry, for mc --exe
<float_rt>lib/float_rt.mcthe RUN-TIME half, which a program includes: putf64, fmt_f64, puthexf. It is the one bundled file the frozen seed cannot lex (it spells float literals) and it carries a seed-skip header saying so

The generality proofs (M24 step 2) #

Three modules the core has never heard of, each with an empty git diff src/.

namefilewhat it gives you
<i128>lib/i128.mca 128-bit integer: type_new(..., 16, 16, TK_WIDE), memory-resident in ONE depth, adds/adc, subs/sbc, mul/umulh, a compare that is not just the 64-bit one twice, and a literal through a module-private global with an N_BLOB initializer. AArch64 only
<mc_i128>lib/mc_i128.mcthe compiler that carries it
<f16>lib/f16.mchalf precision as a STORAGE type, on top of <float>'s machine: four slots and two fcvts, because <float> dispatches on the KIND and not on the id. AArch64 only
<mc_f16>lib/mc_f16.mc<float> plus <f16>, in one compiler

examples/avx/ is the third and is not bundled: it is an example directory with its own README, and it teaches one AVX instruction by its encoding.

The demonstrations #

Everything make check-surface wires up is bundled too, so the demos can be reproduced from a downloaded binary with no checkout:

namefile
<backend_arm64>lib/backend_arm64.mc — the arm64-surface backend
<pass_demo>lib/pass_demo.mc — the x * 1x pass
<user_default>lib/user_default.mc — an empty user_init()
<user_demo>lib/user_demo.mc — registers the backend and the pass
<user_syntax_demo>lib/user_syntax_demo.mc — the Tier 3 registrations, plus M24's type_new, syntax_lit and intrinsic
<mc_syntax_demo>lib/mc_syntax_demo.mc — the taught compiler that wires them in
<syntax_demo_test>lib/syntax_demo_test.mc — the program only that compiler accepts
<user_dupop>lib/user_dupop.mc — the duplicate syntax_infix refusal
<user_tokadd>lib/user_tokadd.mc — the tok_add-before-tok_init guard
<user_dupty>lib/user_dupty.mc — a type_new on a core keyword, refused at user_init
<user_lit_nop>lib/user_lit_nop.mc — a syntax_lit that answers 0 for every literal
<mc_lit_nop>lib/mc_lit_nop.mc — the compiler that carries it, for the M24 inertness proof
<machine_probe>lib/machine_probe.mc — a derived machine that changes no instruction and asserts the depth-type contract
<user_badmach>lib/user_badmach.mc — a derived machine with ONE slot deliberately wrong, the observable-override proof
<mc_badmach>lib/mc_badmach.mc — the compiler that carries it
<user_dupintrin>lib/user_dupintrin.mc — an intrinsic that tries to shadow ld64
<mc_probe>lib/mc_probe.mc — the compiler that carries it
<embed_demo>tests/mc/bundle/embed_demo.mc#embed inside a bundled file
<embed_demo.txt>tests/mc/bundle/embed_demo.txt — its payload

The parts of the core (M41) #

<mc/core> is the sum of six parts, each a bundled name of its own. A recreated compiler names the parts it wants and writes its own main(); src/core.mc is literally those six plus src/main.mc, and scripts/check-parts.sh compiles both spellings and cmps the two objects, so this table cannot drift from the code.

namefilemembers, in orderwhat it gives you
<mc/core_min>src/core_min.mcarena lz objmodel lex ast parse gen_resolve gen_walk hooks clithe compiler that has no target: lexer, parser, resolver, walker, every registry, and mc_main()
<mc/core_machines>src/core_machines.mcmachine_arm64 machine_x86_64mc_machines_init() — the two host machines
<mc/core_writers>src/core_writers.mcsha256 macho backend_exe backend_elf backend_elf_exe backend_coffmc_writers_init() — the eight backend() and five target() registrations
<mc/core_build>src/core_build.mcsha256 toml driver sysroots sysroot stubs limitsmc_build_init()mc build, mc limits, mc sysroot, and the pre-scan
<mc/core_bundle>src/core_bundle.mcbundle_data bundlemc_bundle_init()#include <name> itself
<mc/core_sandbox>src/core_sandbox.mcsandboxmc_sandbox_init()mc sandbox run|exec|check (sandbox.md)

The two files M41 split out are bundled under their own names too: <mc/objmodel> (src/objmodel.mc, the section/symbol/relocation model every writer reads) and <mc/cli> (src/cli.mc, mc_main()). <mc/macho> is now the Mach-O writer alone.

<mc/core_sandbox> (M43) needs nothing but <mc/core_min> and the host file: every system call it issues goes through host_syscall6() and is named by an SN_* index of <mc/sysno>, whose per-architecture number tables are <mc/sysno_linux_aarch64> and <mc/sysno_linux_x86_64> — the two files that also carry sys6, the raw shim. Those three are bundled because a Linux host file includes one of them, and mc build writes #include <mc/host> for a taught compiler.

Spelled out, the whole compiler is:

#include <mc/host>
#include <mc/core_min>
#include <mc/core_machines>
#include <mc/core_writers>
#include <mc/core_build>
#include <mc/core_bundle>
#include <mc/core_sandbox>
#include <mc/main>
#include <user_default>

and docs/guide/98-recreating-the-compiler.md is what each omitted line costs, in bytes and in capability.

A part stands on <mc/core_min> alone, and scripts/check-parts.sh compiles each of the five optional parts on top of the minimal one to say so. It is not free: four names had to move when M41 landed, because the full assembly hides a cross-part dependency completely. tm_cat and tm_num_str went from src/toml.mc to src/arena.mc (src/cli.mc needs the first for --include= and src/backend_coff.mc the second for a long section name); MODE_755 went from src/backend_exe.mc to src/arena.mc (src/driver.mc uses it for mkdir -p); and R_X86_PC32/R_X86_PLT32 went from src/machine_x86_64.mc to src/objmodel.mc, which is where a relocation kind the machine emits and the writer maps belongs. None of the four changed a byte of generated code — they are a #define and three leaf functions.

The naming rule. A bundle name's last path component is the file's basename, because a relative #include inside a bundled file resolves by joining and then, failing that, by last component (see below), and tools/bundle.mc refuses a manifest where two entries share one. That is why the parts are core_min and not core-min: src/core_min.mc cannot be reached as core-min, so a hyphenated bundle name would be a name nothing inside the bundle could include.

Your own bundle #

A debloated compiler can keep #include <name> with its own, much smaller library, at zero core lines. tools/bundle.mc is four includes — <mc/arena>, <lz>, <mc/bundle_data>, <mc/bundle> — over a manifest of NAME<TAB>PATH lines, and all four are bundled names. So:

  1. write the same four-line tool against those names and build it with mc --exe;
  2. run it over your own manifest to generate your own bundle_data.mc;
  3. have your compiler include that file plus <mc/bundle> instead of <mc/core_bundle>, and call lex_set_bundle(&bundle_open) from its main().

src/bundle.mc needs nothing but BUNDLE_COUNT and the two arrays the generator emits. The one thing you give up is <mc/host>: that name is resolved by host_bundle_open in src/core_bundle.mc, which is four lines you copy if you want it.

Relative includes inside a bundled file #

The bundle is flat: mc/lex is one name, not a directory and a file. But src/core.mc still says #include "arena.mc" and src/driver.mc still says #include "../lib/prelude.mc", and both must keep working when the including file is itself bundled. So the lexer joins and normalises the name the usual way, drops a trailing .mc, and looks the result up; if that misses, it retries with the last path component.

written inresolves tofound as
mc/core"arena.mc"mc/arenaexact
sys"io.mc"ioexact
mc/driver"../lib/prelude.mc"lib/preludepreludelast component
mc/core"lz.mc"mc/lzlzlast component

tools/bundle.mc refuses a manifest in which two entries share a last component, so that fallback can never be ambiguous.

A bundled file is pushed onto the same #include stack a real one uses, with the bundled name in place of a path — which is what a diagnostic then shows:

syntax_demo_test:10: type expected at top level

mc/bundle_data, the file the bundle cannot contain #

src/core.mc includes bundle_data.mc, and src/bundle_data.mc is the bundle. It cannot be inside itself: its own bytes would change the bytes it contains. So it is the one name that is regenerated on demand — bundle_find("mc/bundle_data") answers with index BUNDLE_COUNT, and the file is written out again from the blob and index already in memory, by the very same bundle_emit that tools/bundle.mc uses. One definition of the format, so the two cannot drift.

Since M21.5 bundle_emit has two modes, and the difference is arena, not format:

modewho gets ithow the blob is declared
0tools/bundle.mc, writing src/bundle_data.mc to disku64 bundle_blob[] = { … }
1the binary, answering <mc/bundle_data>#embed bundle_blob "bundle.bin"

An array initializer costs one AST node per element, so spelling the 180 KB blob out cost ~22 500 nodes — 2.3 MB of arena — in every taught compiler that includes <mc/core>. As #embed it costs exactly one node (N_BLOB). mc/bundle.bin is therefore the second name that is not in the blob (index BUNDLE_BIN = BUNDLE_COUNT + 1): it is bundle_blob, served straight out of the compiler's own data with no inflate and no copy, rounded up to a multiple of 8 so both forms declare a global of the same size.

The disk copy keeps the u64 form because the frozen stage0/lex.c has no embed in its dir_names[] and build/mc0 src/mc.mc is the seed step of make mc1. Both forms produce the same object, which is what makes the split safe — and what check-standalone measures.

scripts/check-standalone.sh proves the consequence in the strongest form available: a compiler built from #include <mc/core> + #include <user_default>, in an empty directory, compiles src/mc.mc into an object byte for byte identical to build/mc2.o.


The format, and regenerating it #

src/bundle_data.mc is generated source, checked in. It holds one blob — the NUL-terminated names first, in manifest order, then each LZ77 stream — and one flat index with four values per entry (name offset, stream offset, compressed size, real size). Names live in the blob rather than as string literals because every literal counts against the C seed's budget, and the index is one array rather than four for the same reason.

make bundle          # regenerate src/bundle_data.mc from tools/bundle.list
make check-bundle    # prove the checked-in copy is exactly what comes out

make bundle is the only way that file is ever written. Run it whenever a lib/*.mc or a core module changes, before make bootstrapmake check runs check-bundle first precisely so that a stale bundle fails with a message naming make bundle, instead of failing later as a mysterious fixed-point difference.

The bundle is inside the fixed point: mc1 and mc2 both carry it, and the objects they produce must still be identical. See ../guide/70-bootstrap.md.

#embed and the bundle #

#embed NAME "path" [lz] (directives.md) reads its payload the same way its includer was read: from disk for a real file, and from the bundle when the directive was written inside a bundled <name> include. <embed_demo> and <embed_demo.txt> are in the manifest exactly so that this path is exercised from a binary with no checkout.

Edit this page