diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-05 13:46:09 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-05 13:46:09 +0300 |
commit | 42f89542550033a3f22700e6b0fd71627a252f96 (patch) | |
tree | b92fe73c326cb631f6fbb0bc37bc1f653dcd2079 /include | |
parent | 441ddf9277f878b83c8d093def51b27285353fed (diff) | |
download | ejit-42f89542550033a3f22700e6b0fd71627a252f96.tar.gz ejit-42f89542550033a3f22700e6b0fd71627a252f96.zip |
implement minr_d/maxr_d
Diffstat (limited to 'include')
-rw-r--r-- | include/ejit/ejit.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index b4b20c1..965103c 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -872,6 +872,12 @@ void ejit_truncr_d_64(struct ejit_func *s, struct ejit_gpr r0, void ejit_sqrtr_f(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1); void ejit_sqrtr_d(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1); +void ejit_minr_f(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1, struct ejit_fpr r2); +void ejit_minr_d(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1, struct ejit_fpr r2); + +void ejit_maxr_f(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1, struct ejit_fpr r2); +void ejit_maxr_d(struct ejit_func *s, struct ejit_fpr r0, struct ejit_fpr r1, struct ejit_fpr r2); + struct ejit_reloc ejit_bltr(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1); struct ejit_reloc ejit_bner(struct ejit_func *s, struct ejit_gpr r0, |