Exploring the GNU GCC Compiler Optimization Implementation

I would like to understand how the GNU GCC compiler handles optimization. I know this is not easy, but I cannot find the details of the internal implementation of GCC even for a start.

Do I have to be a GNU GCC developer to view the source code and know the low / high level design? Where does a developer who wants to contribute to GCC find implementation details?

+3
source share
2 answers

GCC is open source and its source code is freely available. You can even browse it online . And its internal elements are documented .

+4
source
0

Source: https://habr.com/ru/post/1764191/


All Articles