Skip to content

Commit fd70814

Browse files
Small cleanups and doc updates
1 parent 689a14e commit fd70814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

optvm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ a physical machine. Therefore, all our optimization passes will work on the inst
4242
* [InterferenceGraphBuilder](src/main/java/com/compilerprogramming/ezlang/compiler/InterferenceGraphBuilder.java) - Constructs an InterferenceGraph for a set
4343
of basic bocks, using basic block level liveness information as a starting point for calculating instruction level liveness.
4444
* [ChaitinGraphColoringRegisterAllocator](src/main/java/com/compilerprogramming/ezlang/compiler/ChaitinGraphColoringRegisterAllocator.java) - basic
45-
Chaitin Graph Coloring Register Allocator. Since our target machine here is an abstract machine, we do mot really needing spilling support
45+
Chaitin Graph Coloring Register Allocator. Since our target machine here is an abstract machine, we do not really needing spilling support
4646
as we can size each function's stack frame to accommodate the number of registers needed such that each register is really a slot in the stack
47-
frame. But we will eventually simulate an abstract machine with a limited set of registers and a stack frame.
47+
frame. But we will eventually simulate an abstract machine with a limited set of registers and a separate stack frame.
4848

4949
## Compiler
5050

0 commit comments

Comments
 (0)