cljs.analyzer/load-core is called for every analyzed form

Description

In cljs.analyzer/analyze-form the load-core fn is called. load-core guards against doing its work multiple times. It then always calls (intern-macros 'cljs.core), which also checks whether it was called before. This ends up doing the checks very often. load-core should probably be called in a less frequent manner.

Performance impact is very minimal but I did a quick test in my work project and load-core is called 416671 times there (without cache) when 1 would be enough.

Environment

None

Activity

Show:

Mike Fikes June 25, 2017 at 10:22 PM

Previously, it used to not always call (intern-macros 'cljs.core), with this changing with this commit: https://github.com/clojure/clojurescript/commit/7025bd212fb925cb90db680aa7a5eb3f4c0de4bb

Completed

Details

Assignee

Reporter

Priority

Created March 1, 2017 at 12:16 PM
Updated February 25, 2022 at 5:06 PM
Resolved September 1, 2018 at 10:28 PM