System Image Building
This operation is useful for multiple reasons. A user may:
- Build a precompiled shared library system image on a platform that did not ship with one, thereby improving startup times.
- Modify
Base
, rebuild the system image and use the newBase
next time Julia is started. - Include a
userimg.jl
file that includes packages into the system image, thereby creating a system image that has packages embedded into the startup environment.
Julia now ships with a script that automates the tasks of building the system image, wittingly named build_sysimg.jl
that lives in DATAROOTDIR/julia/
. That is, to include it into a current Julia session, type:
This will include a build_sysimg
function:
Main.BuildSysImg.build_sysimg
— Function
Rebuild the system image. Store it in sysimg_path
, which defaults to a file named sys.ji
that sits in the same folder as libjulia.{so,dylib}
, except on Windows where it defaults to Sys.BINDIR/../lib/julia/sys.ji
. Use the cpu instruction set given by cpu_target
. Valid CPU targets are the same as for the -C
option to julia
, or the -march
option to gcc
. Defaults to , which means to use all CPU instructions available on the current processor. Include the user image file given by userimg_path
, which should contain directives such as using MyPackage
to include that package in the new system image. New system image will not replace an older image unless force
is set to true.
System image optimized for multiple microarchitectures
The system image can be compiled simultaneously for multiple CPU microarchitectures under the same instruction set architecture (ISA). Multiple versions of the same function may be created with minimum dispatch point inserted into shared functions in order to take advantage of different ISA extensions or other microarchitecture features. The version that offers the best performance will be selected automatically at runtime based on available features.
Multi-microarch system image can be enabled by passing multiple targets during system image compilation. This can be done either with the JULIA_CPU_TARGET
make option or with the -C
command line option when running the compilation command manually. Multiple targets are separated by ;
in the option. The syntax for each target is a CPU name followed by multiple features separated by ,
. All features supported by LLVM is supported and a feature can be disabled with a -
prefix. (+
prefix is also allowed and ignored to be consistent with LLVM syntax). Additionally, a few special features are supported to control the function cloning behavior.
base(<n>)
Where is a placeholder for a non-negative number (e.g.
base(0)
,base(1)
). By default, a partially cloned (i.e. notclone_all
) target will use functions from the default target (first one specified) if a function is not cloned. This behavior can be changed by specifying a different base with thebase(<n>)
option. Then
th target (0-based) will be used as the base target instead of the default (0
th) one. The base target has to be either0
or anotherclone_all
target. Specifying a non defaultclone_all
target as the base target will cause an error.-
This cause the function for the targe to be optimize for size when there isn’t a significant runtime performance impact. This corresponds to
-Os
GCC and Clang option. min_size
This cause the function for the targe to be optimize for size that might have a significant runtime performance impact. This corresponds to
-Oz
Clang option.
Implementation overview
This is a brief overview of different part involved in the implementation. See code comments for each components for more implementation details.
-
The loading and initialization of the system image is done in
src/processor*
by parsing the metadata saved during system image generation. Host feature detection and selection decision are done insrc/processor_*.cpp
depending on the ISA. The target selection will prefer exact CPU name match, larger vector register size, and larget number of features. An overview of this process is in .