diff options
Diffstat (limited to 'include/ejit/ejit.h')
-rw-r--r-- | include/ejit/ejit.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index aa7cc45..b0d8651 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -791,4 +791,14 @@ struct ejit_reloc ejit_bmsr(struct ejit_func *s, struct ejit_gpr r0, void ejit_patch(struct ejit_func *s, struct ejit_reloc r, struct ejit_label l); +/* hints for register allocations. Each time a slot is used, its priority is + * incremented by the current priority. Generally, you would want to call + * ejit_inc_prio before entering a loop body and decrement it again when + * exiting. Slots are placed into physical registers in the order of highest + * priority first. */ +size_t ejit_get_prio(struct ejit_func *s); +void ejit_set_prio(struct ejit_func *s, size_t prio); +void ejit_inc_prio(struct ejit_func *s, size_t prio); +void ejit_dec_prio(struct ejit_func *s, size_t prio); + #endif /* EJIT_H */ |