diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-01 19:40:53 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-01 19:40:53 +0300 |
commit | 704baab677029882a5924a59e3fb92f2295132a4 (patch) | |
tree | 3e919d02ecbb1350948dfa4f11b287796e6c172d /src/common.h | |
parent | 826e3929a1d467edf2d2aea4c85b5d0f940ad1ad (diff) | |
download | ejit-704baab677029882a5924a59e3fb92f2295132a4.tar.gz ejit-704baab677029882a5924a59e3fb92f2295132a4.zip |
somewhat improved register allocator
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h index 493a89d..3e56a76 100644 --- a/src/common.h +++ b/src/common.h @@ -258,7 +258,7 @@ struct ejit_insn { struct fpr_stat { struct ejit_fpr f; - size_t prio, fno; + size_t prio, fno, start, end; }; #define VEC_NAME fpr_stats @@ -267,7 +267,7 @@ struct fpr_stat { struct gpr_stat { struct ejit_gpr r; - size_t prio, rno; + size_t prio, rno, start, end; }; #define VEC_NAME gpr_stats |