Ignore:
Timestamp:
11/17/16 19:22:56 (7 years ago)
Author:
Mark Evenson
Message:

precompiler: possibly beta reduce form with function position lambda (Alan Ruttenberg)

Case 1: If the lambda has a single form in it, let someone define a
transform using:

define-function-position-lambda-transform (body-function-name (arglist form args) &body body)

body-function-name is the car of the single form in the lambda
arglist is the arglist of the lambda
form is the single form within the lambda
args are the arguments to which the lambda will be defined.

The function should check whether it can do a transform, and do it if
so, otherwise return nil signalling it couldn't

Case 2: If case 1 is not successful then if the arglist is a simple
one (no &key, &rest, &optional) then do a standard beta-reduction
binding the args to arglist using let (https://wiki.haskell.org/Beta_reduction)

If not, return and do the usual thing.

An example is in contrib/jss/optimize-java-call.lisp

To see benefits, (compile-file contrib/jss/test-optimize-java-call.lisp)
and then load the compiled file. You should see something like the below
which reports the timings for the optimized and unoptimized version of
10000 calls of (#"compile" 'regex.pattern ".*")

--

With optimization: (INVOKE-RESTARGS-MACRO "compile" (QUOTE REGEX.PATTERN) (LIST ".*") NIL T)
Without optimization: ((LAMBDA (#:G85648 &REST #:G85649) (INVOKE-RESTARGS "compile" #:G85648 #:G85649 NIL)) (QUOTE REGEX.PATTERN) ".*")

JUST-LOOP
0.0 seconds real time
0 cons cells

OPTIMIZED-JSS
0.011 seconds real time
0 cons cells

UNOPTIMIZED-JSS
0.325 seconds real time
800156 cons cells

---
<> rdfs:seeAlso <https://mailman.common-lisp.net/pipermail/armedbear-devel/2016-October/003726.html>
<> rdfs:seeAlso <https://mailman.common-lisp.net/pipermail/armedbear-devel/2016-November/003733.html> .
<> :fixes <https://mailman.common-lisp.net/pipermail/armedbear-devel/2016-November/003736.html> .
<> :closes <https://github.com/armedbear/abcl/pull/11/files> .
<> :closes <http://abcl.org/trac/ticket/420> .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/precompiler.lisp

    r14763 r14911  
    383383    (when (and (consp op) (eq (%car op) 'LAMBDA))
    384384      (return-from precompile-function-call
    385                    (cons (precompile-lambda op)
    386                          (mapcar #'precompile1 (cdr form)))))
     385  (or (precompile-function-position-lambda op (cdr form))
     386      (cons (precompile-lambda op)
     387      (mapcar #'precompile1 (cdr form))))))
    387388    (when (or (not *in-jvm-compile*) (notinline-p op))
    388389      (return-from precompile-function-call (precompile-cons form)))
     
    399400          (return-from precompile-function-call (precompile1 (expand-inline form expansion))))))
    400401    (cons op (mapcar #'precompile1 (cdr form)))))
     402
     403(defun precompile-function-position-lambda (lambda args)
     404  (let* ((arglist (second lambda))
     405   (body (cddr lambda))
     406   (simple-arglist? (not (or (memq '&KEY arglist) (memq '&OPTIONAL arglist) (memq '&REST arglist)))))
     407    (or
     408     ;;give a chance for someone to transform single-form function bodies
     409     (and (= (length body) 1) (consp (car body)) (get (caar body) 'sys::function-position-lambda-transform)
     410    (funcall (get (caar body) 'sys::function-position-lambda-transform) (caar body) (car body) (mapcar #'precompile1 args)))
     411     (and simple-arglist?
     412    (let ((arglist-length (if (memq '&aux arglist) (position '&aux arglist) (length arglist))))
     413      (if (= (length args) arglist-length)
     414    ;; simplest case - we have a simple arglist with as many
     415    ;; arguments as call args. Transform to let.
     416    (return-from precompile-function-position-lambda
     417      `(let* ,(append
     418          (loop for arg-name in arglist
     419          for arg in (mapcar #'precompile1 args)
     420          until (eq arg-name '&aux)
     421          collect (list arg-name arg))
     422          (subseq arglist (1+ arglist-length)))
     423          ,@body))
     424    (error "Argument mismatch for lambda in function position: ~a applied to ~a" `(lambda ,arglist body) args)))))))
     425
     426(defmacro define-function-position-lambda-transform (body-function-name (arglist form args) &body body)
     427  `(put ',body-function-name 'sys::function-position-lambda-transform
     428  #'(lambda(,arglist ,form ,args)
     429      ,@body)))
    401430
    402431(defun precompile-locally (form)
Note: See TracChangeset for help on using the changeset viewer.