aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-04-05 13:46:09 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-04-05 13:46:09 +0300
commit42f89542550033a3f22700e6b0fd71627a252f96 (patch)
treeb92fe73c326cb631f6fbb0bc37bc1f653dcd2079 /include
parent441ddf9277f878b83c8d093def51b27285353fed (diff)
downloadejit-42f89542550033a3f22700e6b0fd71627a252f96.tar.gz
ejit-42f89542550033a3f22700e6b0fd71627a252f96.zip
implement minr_d/maxr_d
Diffstat (limited to 'include')
-rw-r--r--include/ejit/ejit.h6
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,