GCC Project and My potential contribution
In the following weeks, I will work with the GCC for Aarch64 machines . This is, for me, a very interesting project as well as challenging. In my whole life, I have never thought of actually modifying an existing compiler let along one of the most popular, powerful one. In this article, we will see what this project aims to do and my part as a contributor of the project Project description Normally, when we compile a program, we often compile it for a specific architecture. Everything would be fine if the architecture stays the same forever. However, like us, they are also improved, with more and more features, functionalities that could potentially provide faster runtime and better experience for their users. As the result, we programmer aims to make our programs faster and better, and one of the way to do so is to pick up new features whenever possible so that our programs can utilize all available resources that the machine offers them. This is a problem for the GCC compiler be...