Description
Right now the compiler has a rustc_platform_intrinsics
crate which is basically a database of all platform intrinsics with their inputs/outputs and LLVM names, etc. This is the information the compiler uses to typecheck all intrinsics and also generate code for them with LLVM. An example generated file looks like aarch64.rs
.
These files are all generated by a generator.py
script in the src/etc
dir. This generator slurps up a ton of JSON definitions, for example all the files in src/etc/platform-intrinsics/x86
and then generates these Rust files.
Now that we're using Cargo as a build system we can avoid checking in these generated source files. Instead we can translate generator.py
into Rust as a build script and use build-time code generation to generate all of these files.
This isn't necessarily an easy task because generator.py
is not exactly a trivial script, but I'm more than willing to help out if anyone's got any questions!