C++20: The Advantages of Modules
This is a cross-post from www.ModernesCpp.com.
Modules are one of the four big features of C++20: concepts, ranges, coroutines, and modules. Modules promise a lot: compile-time improvement, isolation of macros, the abolition of header files, and ugly workarounds.
Why do we need modules? I want to step back and describe which steps are involved in getting an executable.
A Simple Executable
Of course, I have to start with "Hello World".
// helloWorld.cpp #include <iostream> int main() { std::cout << "Hello World" << std::endl; }
Making an executable helloWorld out of the program helloWorld.cpp increases its size by factor 130.
The number 100 and 12928 in the screenshot stand for the number of bytes.
We should have a basic understanding of what's happening under the hood.
The classical Build Process
The build process consists of three steps: preprocessing, compilation, and linking.
Preprocessing
The preprocessor handles the preprocessor directives such as #include and #define. The preprocessor substitutes #inlude directives with the corresponding header files, and it substitutes the macros (#define). Thanks to directives such as #if, #else, #elif, #ifdef, #ifndef, and #endif parts of the source code can be included or excluded.
This straightforward text substitution process can be observed by using the compiler flag -E on GCC/Clang, or /E on Windows.
WOW!!! The output of the preprocessing step has more than half a million bytes. I don't want to blame GCC; the other compilers are similar verbose: CompilerExplorer.
The output of the preprocessor is the input for the compiler.
Compilation
The compilation is separately performed on each output of the preprocessor. The compiler parses the C++ source code and converts it into assembly code. The generated file is called an object file and it contains the compiled code in binary form. The object file can refer to symbols, which don't have a definition. The object files can be put in archives for later reuse. These archives are called static libraries.
The objects or translation units which the compiler produces are the input for the linker.
Linking
The output of the linker can be an executable or a static or shared library. It's the job of the linker to resolve the references to undefined symbols. Symbols are defined in object files or in libraries. The typical error in this state is that symbols aren't defined or defined more than once.
This build process consisting of the three steps is inherited from C. It works sufficiently good enough if you only have one translation unit. But when you have more than one translation unit, many issues can occur.
Issues of the Build Process
Without any attempt to be complete, here are flaws of the classical build process. Modules overcome these issues.
Repeated substitution of Headers
The preprocessor substitutes #inlude directives with the corresponding header files. Let me change my initial helloWorld.cpp program to make the repetition visible.
I refactored the program and added two source files hello.cpp and world.cpp. The source file hello.cpp provides the function hello and the source file world.cpp provides the function world. Both source files include the corresponding headers. Refactoring means that the program does the same such as the previous program helloWorld.cpp. Simply, the internal structure is changed. Here are the new files:
- hello.cpp and hello.h
// hello.cpp #include "hello.h" void hello() { std::cout << "hello "; }
// hello.h #include <iostream> void hello();
- world.cpp and world.h
// world.cpp #include "world.h" void world() { std::cout << "world"; }
// world.h #include <iostream> void world();
- helloWorld2.cpp
// helloWorld2.cpp #include <iostream> #include "hello.h" #include "world.h" int main() { hello(); world(); std::cout << std::endl; }
Building and executing the program works as expected:
Here is the issue. The preprocessor runs on each source file. This means, that the header file <iostream> is included three times in each translation unit. Consequently, each source file is blown up to more than half a million lines.
This is a waste of compile-time.
In contrast, a module is only imported once and is literally for free.
Isolation from Preprocessor Macros
If there is one consensus in the C++ community, it's the following one: we should get rid of the preprocessor macros. Why? Using a macro is just text substitution, excluding any C++ semantic. Of course, this has many negative consequences: For example, it may depend on in which sequence you include macros or macros can clash with already defined macros or names in your application.
Imagine you have to headers webcolors.h and productinfo.h.
// webcolors.h #define RED 0xFF0000
// productinfo.h #define RED 0
When a source file client.cpp includes both headers, the value of the macro RED depends on the sequence the headers are included. This dependency is very error-prone.
In contrast, it makes no difference, in which order you import modules.
Multiple Definition of Symbols
ODR stands for the One Definition Rule and says in the case of a function.
- A function can have not more than one definition in any translation unit.
- A function can have not more than one definition in the program.
- Inline functions with external linkage can be defined in more than one translation. The definitions have to satisfy the requirement that each definition has to be the same.
Let see what my linker has to say when I try to link a program breaking the one definition rule. The following code example has two header file header.h and header2.h. The main program includes the header file header.h twice and, therefore, break the one definition rule, because two definitions of func are included.
// header.h void func() {}
// header2.h #include "header.h"
// main.cpp #include "header.h" #include "header2.h" int main() {}
The linker complains about the multiple definitions of func:
We are used to ugly workarounds such as put an include guard around your header. Adding the include guard FUNC_H to the header file header.h solves the issue.
// header.h #ifndef FUNC_H #define FUNC_H void func(){} #endif
In contrast, identical symbols with modules are very unlikely.
Before I end this post, I want to summarize the advantages of modules.
Advantages of Modules
- Modules are only imported once and are literally for free.
- It makes no difference in which order you import a module.
- Identical symbols with modules are very unlikely.
- Modules enable you to express the logical structure of your code. You can explicitly specify names that should be exported or not. Additionally, you can bundle a few modules into a bigger module and provide them to your customer as a logical package.
- Thanks to modules, there is no need to separate your source code into an interface and an implementation part.
What's next?
Modules promise a lot. In my next post, I define and use my first module.