-
Exploring AArch64 assembler – Chapter 7
In the previous installment of this series we saw how to alter the sequencing of our programs. Today we will see how we can reuse instructions by means of branches. Let's talk about functions.
-
Compilation of array expressions in Fortran
As I stated in my previous post, Fortran 90 improved the array capabilities of Fortran. Today we will discuss what are the challenges when compiling array expressions.
-
Introduction to the gfortran array descriptor
With the approval of Fortran 90, its array capabilities were largely improved. While still far from languages like APL, the extra functionality required a rethinking of the concept array in Fortran. This led to the need for array descriptors in the language.
-
How (not) to write a C++ front end – Part 3
In the previous installment we talked about the parsing technology we used, which looks like the canonical academic approach to parsing. In this chapter we will see some dificulties we encountered along the years.
-
Exploring AArch64 assembler – Chapter 6
So far we know how to do some computations and access memory. Today we will learn how to alter the control flow of our program.