From f4be2429f38faba0c54862055f808cb242a7eb49 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 3 Apr 2024 18:36:21 +0300 Subject: make regalloc work with ssa form + Still not ideal register allocator, but can be improved with some heuristics and potentially completely replaced in the future if so desired with graph coloring or something. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 3c8feec..0352759 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Optimizing middle/back end for triscv. | x41 | a21 | x42 | a22 | x43 | a23 -| x44 | a24 +| x44 | tmp0 | x45 | t7 | x46 | t8 | x47 | t9 @@ -68,7 +68,7 @@ Optimizing middle/back end for triscv. | x59 | t21 | x60 | t22 | x61 | t23 -| x62 | t24 +| x62 | tmp1 | x63 | s7 | x64 | s8 | x65 | s9 @@ -86,4 +86,4 @@ Optimizing middle/back end for triscv. | x77 | s21 | x78 | s22 | x79 | s23 -| x80 | s24 +| x80 | tmp2 -- cgit v1.3