01. Compile options and kernel compilation The Linux kernel (English: linux kernel) is a computer operating system kernel written in C language and assembly language, matching the POSIX standard, and released under the GNU General Public License. Technically speaking Linux is just a kernel. "Kernel" refers to a system software that provides hardware abstraction layer, disk and file control, multitasking and other functions. So first of all, we all know that if the Linux kernel is compiled with O0, it cannot be compiled. The Linux kernel is compiled with either O2 or Os. This can be seen from the Linux Makefile: When you choose
It will be Os, otherwise it will be O2. In fact, O2 and Os are a collection of some optimization options: gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts gcc -c -Q -Os --help=optimizers > /tmp/Os-opts The former tends to be based on speed optimization, while the latter tends to be based on smaller size optimization. Compare the switch options of the two: meld /tmp/O2-opts /tmp/Os-opts The difference is pitifully small: Both O2 and Os enable inline small functions and called once functions, but -finline-functions is disabled in O2 and enabled in Os. In O2, optimize-strlen is on, but in Os, this option is off. The meaning of the relevant options can be seen through "man gcc" (if you have any questions, find a man), for example, after searching for inline-functions after man gcc: From O0 to O1, O2, O3, it is a process of gradually increasing the number of optimization options enabled: The kernel cannot be compiled with O0 because the kernel itself is not designed to be compiled with O0. Its design includes the assumption that the compilation will be optimized. Let's use a simple example to illustrate this. 02. A simple example The following code: O0 compilation will report the following error, saying that the f() function is not defined: $ gcc -O0 cc.c cc.c:1:13: warning: 'f' used but never defined [enabled by default] void f(void); ^ /tmp/ccTwwtHG.o: In function `main': cc.c:(.text+0x19): undefined reference to `f' collect2: error: ld returned 1 exit status But when compiled with O2, there is no problem: $ gcc -O2 cc.c The reason is that when O2 compiles, it realizes that a == 1, so if (a>2) does not hold, so it does not matter that f() is not defined. After changing the code slightly: O2 is no longer working at this time: $ gcc -O2 cc.c /tmp/ccXiyBHn.o: In function `main': cc.c:(.text.startup+0x7): undefined reference to `f' collect2: error: ld returned 1 exit status Therefore, through this example, you can see why the same code can pass with O2 but not with O0. There is a lot of code in the kernel that is supposed to be optimized by the compiler. 3. We don’t want to inline anymore Due to compilation optimization, some functions (such as small functions and functions called by only one person in the entire project) are not explicitly written as inline, but the compiler optimizes them to inline. This causes some trouble for debugging because the symbol corresponding to this function cannot be found. At this point, we can explicitly state that we don't want to inline certain functions: Otherwise, the above two functions may be automatically inlined by the compiler even if you do not write inline in your code because O2 and Os enable the relevant inline options. If we want to refuse inline, we can mark it with noline. 4. I don’t want to be optimized When O1, O2, O3, and Os are enabled globally, if we do not want to perform any optimization on a single function, we can modify the function with Recompile with O2: $ gcc -O2 cc.c /tmp/cc8M338p.o: In function `main': cc.c:(.text+0x19): undefined reference to `f' collect2: error: ld returned 1 exit status 5. Conclusion Here are a few practical guidelines:
Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: JS realizes the card dealing animation
>>: MySQL 5.7.17 winx64 free installation version configuration method graphic tutorial
This article example shares the specific code of ...
Table of contents 1. Introduction to MySQL Index ...
trigger: Trigger usage scenarios and correspondin...
JS running trilogy js running code is divided int...
Preface: The storage engine is the core of the da...
1. Statistics of PV and IP Count the PV (Page Vie...
Jiedaibao is a mobile phone loan software platfor...
Table of contents transition hook function Custom...
Table of contents Nginx proxies two socket.io ser...
As we all know, the CSS position absolute is set ...
Use HTML to write a dynamic web clock. The code i...
First, let's talk about why we use provide/in...
MySQL variables include system variables and syst...
<br />For some time, I found that many peopl...
Binlog is a binary log file that is used to recor...