aboutsummaryrefslogtreecommitdiff
path: root/src/vec.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-13 19:20:56 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-13 19:25:59 +0200
commit57f6b41047e95374701ee276248f0f8615168450 (patch)
tree919a47249b2442dab31ae236f1f9f858651e5357 /src/vec.h
parentba9145b0b7af2a82c62f8dfa28807958af5d0c8d (diff)
downloadejit-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vec.h b/src/vec.h
index 90558ac..f982bac 100644
--- a/src/vec.h
+++ b/src/vec.h
@@ -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)