-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
+++ | ||
title = "Bril to RISC-V Lowering System" | ||
[[extra.authors]] | ||
name = "John Rubio" | ||
link = "https://github.com/JohnDRubio" | ||
[[extra.authors]] | ||
name = "Arjun Shah" | ||
link = "https://github.com/20ashah" | ||
+++ | ||
|
||
# Summary | ||
@jdr299 (John Rubio) and I wrote a python program that converts Bril to runnable RISCV assembly for our final project. | ||
|
||
[Codebase](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project) | ||
|
||
- [Bril Insn Classes + conver to RISCV functions](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project/BrilInsns) | ||
- [RISC Insn Classes](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project/RVIRInsns) | ||
- [Trivial Register Allocation Logic](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project/TrivialRegAlloc) | ||
- Calling Convention Logic | ||
- [Prologue Inserter](https://github.com/JohnDRubio/CS6120_Lessons/blob/main/final_project/util/prologue.py) | ||
- [Epilogue Inserter](https://github.com/JohnDRubio/CS6120_Lessons/blob/main/final_project/util/epilogue.py) | ||
- [Lowering function call](https://github.com/JohnDRubio/CS6120_Lessons/blob/main/final_project/BrilInsns/BrilFunctionCallInsn.py) | ||
|
||
# What was the goal? | ||
|
||
The goal for this project was to write the backend of a compiler that takes a bril program and lowers it to RISCV assembly - which ultimately | ||
we could run on a RISCV emulator to verify that the outputted RISCV program behaved the same as the bril program. The goal was just | ||
to get a working version of RISCV assembly. We thought if we had time after doing this, it might be nice to make the assembly more efficient, | ||
but our first goal was a working version. We wanted to implement this lowering as a 1-N approach, where each bril instruction would be mapped | ||
to a certain number of RISCV instructions to get an abstract assembly. And then simply implementing calling conventions and trivial register allocation. | ||
Each of these parts are described in detail below. | ||
|
||
# What did you do? (Include both the design and the implementation.) | ||
|
||
## Bril Instruction classes | ||
|
||
The first step in this project included writing classes for each Bril instruction. For code reuse, we organized these classes in a hierarchy that would | ||
allow for similarities in instructions to be in common classes using inheritance. The main idea for this is if we needed to tweak these common aspects in | ||
the instruction classes, the change would be in one place rather than having to keep track of all the different files to update. The other reason why we dealt | ||
with objects rather than bril text or bril json, was because it is easier to keep track and update operands in an object format. | ||
|
||
The class hierarchy we came up with was the following: | ||
|
||
<img width="1689" alt="Screenshot 2023-12-11 at 6 46 26 PM" src="https://github.com/20ashah/cs6120/assets/33373825/5b165c72-39bf-44d0-93b5-2dc37a265bb9"> | ||
|
||
## Parse Bril to Objects | ||
|
||
Once we had classes for each bril instruction, now we needed to actually create these objects from a Bril program. We performed the following steps for each | ||
function in the Bril program: | ||
|
||
1. Form basic blocks | ||
- Not entirely necessary, but in the event that we want to perform optimizations later on, it would have been helpful for these bril instructions to be in basic blocks | ||
2. Insert missing labels on basic blocks | ||
- For basic blocks that didn’t have a label, a unique one was assigned - mainly for the purpose of creating a more complete CFG. | ||
3. Add underscore before every variable name | ||
- In the event that the user defined a variable x1, we did not want this to be confused with the actual register in RISCV during register allocation, so we added an | ||
underscore before every variable in the Bril program. | ||
4. Parse instructions in Bril json | ||
- The main part in this step includes going through each Bril instruction (which is a json object), picking out certain parts of the instruction such as ‘op’, and | ||
identifying what kind of instruction it is. Once this was determined, we created an instance of the appropriate Bril class. By the end of this process, we have a | ||
list of Bril object instructions for each function in the bril program. | ||
|
||
## RISCV Instruction classes | ||
|
||
There was less of a hierarchy in our RISCV instruction classes, since there were not that many different types of instructions like there were in Bril. For these classes, we had a general RISCV instruction class that had method stubs such as emitting assembly, getting abstract registers, getting read / write register (explained in detail below), and converting registers from abstract to real that each of the RISCV classes would implement. | ||
|
||
## Convert Bril to RISCV Objects (Abstract Assembly) | ||
|
||
Now that we have a list of Bril object instructions, and a hierarchy of RISCV classes, we ultimately want a list of RISCV object instructions that is semantically equivalent | ||
to the list of Bril object instructions. To implement this, we had each Bril instruction class implement a function to convert itself into a series of RISCV objects. | ||
As specified before, we implemented this as a 1-N approach, where each Bril instruction corresponds to N RISCV instructions. This is less efficient than a N-N approach, | ||
where we try and look for Bril instructions we can combine for optimization, but the 1-N approach was the first step in generating working RISCV assembly, which was our first goal. | ||
|
||
An important note here is that in the first pass, we implemented this for every Bril instruction object except for function calls. The reason for this is because we wanted to save | ||
the calling convention pass of lowering until the end, even after register allocation. We anticipated that this part would be the hardest, and so we wanted to get RISCV assembly | ||
without function calls working first before we added that whole layer of complexity. This worked out quite well, since we could test the correctness of the assembly we were generating | ||
without function calls early on, without having implemented lowering for function calls. | ||
|
||
Below is a brief description of the conversions from Bril instructions to RISCV instructions. We filled out this table prior to actually coding these functions to make sure | ||
that logically, our conversions created RISCV instructions that were semantically equivalent to the Bril. Note that this is abstract assembly, so no actual RISCV registers are used. | ||
|
||
|
||
| Bril | RISCV Abstract Asm | | ||
| ------------------------------- | --------------------------------- | | ||
| x: int = const 1 | addi x, x0, 1 | | ||
| x: int = add y z | add x, y, z | | ||
| x: int = mul y z | mul x, y, z | | ||
| x: int = sub y z | sub x, y, z | | ||
| x: int = div y z | div x, y, z | | ||
| x: bool = eq y z | beq y, z, .eq <br> addi x, x0, 0 <br> jal x0 .exit_cond <br> .eq: <br> addi x, x0, 1 <br> .exit_cond: | | ||
| x: bool = lt y z | blt y, z, .lt <br> addi x, x0, 0 <br> jal x0 .exit_cond <br> .lt: <br> addi x, x0, 1 <br> .exit_cond: | | ||
| x: bool = gt y z | blt z, y, .gt <br> addi x, x0, 0 <br> jal x0 .exit_cond <br> .gt: <br> addi x, x0, 1 <br> .exit_cond: | | ||
| x: bool = le y z | bge z, y, .le <br> addi x, x0, 0 <br> jal x0 .exit_cond <br> .le: <br> addi x, x0, 1 <br> .exit_cond: | | ||
| x: bool = ge y z | bge y, z, .ge <br> addi x, x0, 0 <br> jal x0 .exit_cond <br> .ge: <br> addi x, x0, 1 <br> .exit_cond: | | ||
| x: bool = not y | xori x, y, 1 | | ||
| x: bool = and y z | and x, y, z | | ||
| x: bool = or y z | or x, y, z | | ||
| print x | nop | | ||
| jmp .label | jal x0, .label | | ||
| br cond .label1 .label2 | addi tmp, x0, 1 <br> beq cond, tmp, .label1 <br> jal x0, .label2 <br> .label1: <br> ... <br> jal x0 .exit <br> .label2: <br> ... <br> .exit: | | ||
| ret x | addi a0, x, 0 <br> jalr x0, x1, 0 | | ||
| ret | jalr x0, x1, 0 | | ||
| x: int = id y | addi x, y, 0 | | ||
|
||
Note: An important note about the above chart that required some extra implementation had to deal with the case when the RISCV instructions needed to add in temps and labels | ||
to match the behavior of the Bril instructions. An edge case here is that these labels and temp variables need to be generated fresh each time for semantic equivalence, and so | ||
keeping track of this was a key part of the converter. | ||
|
||
## Trivial Register Allocation (without calls) | ||
|
||
At this stage of compilation, we have lowered a Bril program to a list of instructions, all of which are RISCV class objects with abstract registers, with the exception of | ||
function calls, which still remain to be Bril objects (We saved dealing with calling conventions until the end). In this stage of lowering, we again ignore the function calls, | ||
but with all of the RISCV objects, we get rid of the abstract registers and replace them with actual RISCV registers using trivial register allocation. Before discussing the | ||
details of how this was implemented, we will first briefly describe how trivial register allocation works, in a non architecture specific way. | ||
|
||
### Description of trivial register allocation | ||
|
||
The first step is to select 3 caller saved registers in the given assembly language. In most assembly languages, instructions deal with at most only 2 registers at a time, | ||
and so we’ll never need to have more than these registers. Next, the main part of trivial register allocation involves adding instructions before each abstract assembly | ||
instruction to shuttle variables off of the stack into these registers, and instructions after to shuttle variables back onto the stack. This design of allocation has these | ||
hardware registers simply being shuttle temps, moving data on and off of the stack, never really storing important variable data after that function has passed. Obviously, this | ||
implementation is not very efficient, since this requires loads and stores for every abstract assembly instruction, but it is the simplest implementation to create working assembly code. | ||
|
||
### How this was implemented | ||
|
||
The way this was implemented in our case was first creating a class that dealt with keeping track of stack offsets for each variable. What this class did was go through our list | ||
of RISCV instruction objects and for each one, pull out all of the abstract temps - variables that were not real RISCV registers and would need to be included in trivial register | ||
allocation. For each of these temps, this mapping class would assign it a unique offset in increments of 8 (starting from -8). | ||
|
||
This was implemented as a dictionary in python. So, if we come across a variable that is already in this dictionary, this means that we have seen it before and had already assigned it | ||
an offset, so we move on. Note that this happens on a per function basis, so if we had two separate functions and they both contain a variable 'a', this variable is getting assigned | ||
two separate offsets in each of these functions (for obvious reasons). By the end of this, for each function in our bril program, we have an object that has mapped each unique abstract variable to a unique stack location. | ||
|
||
The next step is to actually perform the trivial register allocation for each instruction in our function. As described above, this involves adding additional instructions before and after each instruction to load the appropriate temps off the stack, perform the operation, and then store the temps back onto the stack. The important property of when to add instructions before or after an instruction X is the following: | ||
|
||
- For each temporary variable that X reads from, we must include loads before the instruction to load these variables from their stack locations | ||
- For the temporary variable that X writes to, we must include a store after the instruction to store this variable to its appropriate stack location | ||
|
||
These conditions led us to implement functions for each RISCV instruction object - one to return the list of abstract temps that the instruction reads from, and one to return the list of abstract temps that the instruction writes to. Knowing these for each instruction would allow us to determine where to place surrounding instructions to shuttle temps on and off the stack. | ||
|
||
Now, we iterate through each RISCV instruction and get the list of abstract temps that it reads from and writes to. For each of the abstract temps that the instruction reads from, we use our mapper to look through the dictionary and find the stack offsets for each. Before this instruction, we add loads from these stack offsets into our RISCV registers. Then we perform the operation in the instruction, being sure to replace the abstract temps that are read from with the RISCV registers that we just loaded into. Now that he abstract temps in the instruction that we read from are taken care of, we move onto writes. We look at the abstract temp we write to, and replace that in the instruction with the next available RISCV register we haven't used for the reads yet. We then find using the mapper the stack location of this destination variable and we add an instruction after the operation that performs a store from the destination RISCV register into the appropriate stack offset the mapper gave us. | ||
|
||
Doing this for each RISCV instruction gives us executable assembly that is complete without any abstract temps besides dealing with function calls / arguments / calling conventions. | ||
|
||
## Calling Conventions | ||
|
||
By far, the biggest implementation obstacle was implementing the RISC-V calling conventions. We based our implementation off of the RISC-V calling conventions taught in Cornell's CS 3410: Computer System Organization and Programming. To oversimplify four lectures' worth of material, the essence of RISC-V calling conventions can be distilled into three main phases: | ||
|
||
1. **Prologue (Function Entry Setup):** Before entering the function body, a set of preparatory actions, known as the prologue, take place. These include the creation of the stack frame. The size of the stack frame usually needs to be known ahead of time, considering the space needed to accommodate the return address, frame pointer, any overflow arguments, and local variables that must be pushed onto the stack. Additionally, all callee-save registers that will be utilized during the function execution should be pushed onto the stack at this stage. | ||
|
||
2. **Function Call Instruction Preparation:** Prior to a function call instruction, certain steps must be taken to ensure the proper transfer of control and data. This involves placing function arguments in designated registers, following the argument-passing registers convention. For additional arguments or those that don't fit into the designated registers, space on the stack is allocated to hold these values. The function call instruction is then executed, initiating the transfer of control to the callee. | ||
|
||
3. **Epilogue (Clean-up):** The third key piece of this calling convention puzzle is the clean-up step, or the epilogue. After the instructions in the function body have finished executing, the epilogue is responsible for restoring the stack to its original state and releasing any resources allocated during the prologue. This includes popping the stack frame, restoring the values of callee-save registers, and ensuring a smooth return to the calling function. | ||
|
||
# What were the hardest parts to get right? | ||
|
||
We found it surprisingly easy to convert a Bril program to abstract assembly and even perform trivial register allocation. Because Bril was already a flat set of instructions | ||
with instructions very similar to RISCV, these initial passes to create RISCV instructions were fairly simple. Trivial register allocation was slightly more complicated, | ||
but still was easily implemented with a mapper to assign and keep track of stack offsets. The hardest part to get right was definitely lowering function calls via RISCV calling conventions. | ||
|
||
# Were you successful? (Report rigorously on your empirical evaluation.) | ||
|
||
Our original goal was to implement a RISC-V lowering system, implement Bril-to-RISC-V lowering rules using Cranelift's ISLE DSL, and to use Crocus to verify the semantic equivalence of our lowering system against that of Cranelift. We were learned that we were a bit overambitious in these goals and learned that implementing the Bril-to-RISC-V lowering rules in Cranelift's ISLE DSL required enough overhead to be its own project. So we were unsuccessful in achieving goals (2) and (3), but we were successful in achieving goal (1). | ||
|
||
Our goal to generate runnable RISCV assembly from a Bril program was successful. We wanted to prioritize getting a working version of this assembly instead of fancier optimizations, which was achieved in this project. In terms of how we went about testing, we took a unit testing style approach, of testing individual modules (in this case Bril instructions) to make sure that the lowered RISCV instructions made sense and were semantically equivalent. After identifying that this lowering worked on instructions in isolation, we tested these instructions in various combinations. | ||
|
||
Since we implemented trivial register allocation before function call lowering, we first tested our compiler thoroughly with [test cases](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project/test/trivial-reg-alloc) that encompassed every Bril instruction minus function calls / arguments. Once we verified that this worked, we moved on to testing with function calls once the calling conventions part was implemented. The main thing we tested was that we could execute this RISCV assembly and it was semantically equivalent to the Bril program. | ||
|
||
Just to highlight our results in some way, [here](https://github.com/JohnDRubio/CS6120_Lessons/tree/main/final_project/asm) are some examples that illustrate outputted RISCV assembly that we generated from Bril programs. | ||
|
||
--- | ||
_John Rubio is a 2nd year MSCS student interested in hardware and compilers. In his free-time, he trains Brazilian Jiu-Jitsu._ | ||
|
||
_Arjun Shah is a senior undergraduate majoring in CS. Arjun is interested in large-scale software systems. In his free time, Arjun trains competitive weight-lifting._ |