Added TODO

This commit is contained in:
Justin Ethier 2019-02-08 13:24:23 -05:00
parent 7570665448
commit 1caa277f8a

View file

@ -112,6 +112,7 @@
) )
(include "cps-opt-local-var-redux.scm") (include "cps-opt-local-var-redux.scm")
(include "cps-opt-analyze-call-graph.scm") (include "cps-opt-analyze-call-graph.scm")
(include "cps-opt-memoize-pure-fncs.scm")
(begin (begin
;; The following two defines allow non-CPS functions to still be considered ;; The following two defines allow non-CPS functions to still be considered
;; for certain inlining optimizations. ;; for certain inlining optimizations.
@ -1712,6 +1713,7 @@
;; in compiler benchmark, need to revist how to throttle/limit this ;; in compiler benchmark, need to revist how to throttle/limit this
;; (program size? heuristics? what else??) ;; (program size? heuristics? what else??)
new-ast) new-ast)
TODO: integrate (define (opt:memoize-pure-fncs sexp)
) )
) )