diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-13 19:20:56 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-13 19:25:59 +0200 |
commit | 57f6b41047e95374701ee276248f0f8615168450 (patch) | |
tree | 919a47249b2442dab31ae236f1f9f858651e5357 /src/vec.h | |
parent | ba9145b0b7af2a82c62f8dfa28807958af5d0c8d (diff) | |
download | ejit-57f6b41047e95374701ee276248f0f8615168450.tar.gz ejit-57f6b41047e95374701ee276248f0f8615168450.zip |
improve register allocation
+ Still linear, but orders regs by some kind of priority
+ Use all registers available, not just callee-save
Diffstat (limited to 'src/vec.h')
-rw-r--r-- | src/vec.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -99,10 +99,10 @@ static inline void VEC(reserve)(struct VEC_STRUCT *v, size_t n) return; v->n = n; - if (v->s < v->n) { + while (v->s < v->n) v->s *= 2; - v->buf = realloc(v->buf, v->s * sizeof(VEC_TYPE)); - } + + v->buf = realloc(v->buf, v->s * sizeof(VEC_TYPE)); } static inline void VEC(shrink)(struct VEC_STRUCT *v, size_t n) |