mes: Move assoc to core.

* mes/mes.c (assoc_string, assoc): New function.
* mes/module/mes/scm.mes (assoc): Remove.  Gains 12% performance for
MesCC.
This commit is contained in:
Jan Nieuwenhuizen 2018-10-19 22:38:19 +02:00
parent 509ebb038a
commit f660d149a5
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
2 changed files with 18 additions and 5 deletions

View File

@ -108,11 +108,6 @@
(define assv assq)
(define assv-ref assq-ref)
(define (assoc key alist)
(if (not (pair? alist)) #f
(if (equal? key (caar alist)) (car alist)
(assoc key (cdr alist)))))
(define (assoc-ref alist key)
(let ((entry (assoc key alist)))
(if entry (cdr entry)

View File

@ -423,6 +423,14 @@ list_of_char_equal_p (SCM a, SCM b) ///((internal))
return (a == cell_nil && b == cell_nil) ? cell_t : cell_f;
}
SCM
assoc_string (SCM x, SCM a) ///((internal))
{
while (a != cell_nil && list_of_char_equal_p (STRING (x), STRING (CAAR (a))) == cell_f)
a = CDR (a);
return a != cell_nil ? CAR (a) : cell_f;
}
SCM
list_to_symbol (SCM s)
{
@ -857,6 +865,16 @@ assq (SCM x, SCM a)
return a != cell_nil ? CAR (a) : cell_f;
}
SCM
assoc (SCM x, SCM a)
{
if (TYPE (x) == TSTRING)
return assoc_string (x, a);
while (a != cell_nil && equal2_p (x, CAAR (a)) == cell_f)
a = CDR (a);
return a != cell_nil ? CAR (a) : cell_f;
}
SCM
set_car_x (SCM x, SCM e)
{