perf: AOT escape analysis (IR inlining + scalar replacement)
Adds two IR passes to jolt.passes that run when a unit opts into direct-linking (JOLT_DIRECT_LINK=1, off by default). The inline pass splices small direct-linked fns at their call sites, copy-propagating trivial args so that scalar replacement can then see map literals across the call boundary. Scalar replacement is AOT escape analysis: a map allocation whose only use is constant-keyword lookup is dropped and each (:k m) is replaced with the value at :k, both for a literal lookup subject and for a non-escaping let-bound map. Inlining and scalar replacement iterate to a capped fixpoint, since inlining exposes literals that scalar replacement then collapses. The back end stashes the body IR of each single-fixed-arity defn on its var cell (inline-stash!), and the portable pass reads it through two new jolt.host contract fns (inline-enabled?, inline-ir). Inlining is gated on :inline?, which is off for all of init so core and the self-hosted compiler compile exactly as before (const-fold only); api/init and main re-read JOLT_DIRECT_LINK so the flag works both for a freshly built context and for the build-time-baked one in the shipped binary. Only inline-safe targets are spliced: a single fixed arity, no recur/loop/fn/ try crossing the boundary, within a size budget, a closed body (no free locals beyond the params, so a self-recursive fn's name reference can't dangle), and not ^:redef / ^:dynamic. Bodies are fully alpha-renamed so no spliced name can collide with a caller local. On the ray tracer this is 15.3s -> 13.0s (1.18x). The ceiling is honest: that workload's cost is dominated by lookups on maps that genuinely escape (rays, hits, materials) and by dynamic dispatch (the reduce closure, the :scatter fn), which escape analysis cannot remove. On allocation-bound code where the temporaries are local it is far larger: a vec3 reflect+dot loop goes 9.3s -> 0.38s (25x), with the loop body reduced to pure arithmetic. Verified: full jpm test passes (inline off, no regression); conformance 335/335 in all three modes and the clojure-test-suite both pass with inline on; new inline-sra-test pins the transform and its semantics.
This commit is contained in:
parent
0cfb5a982e
commit
b5075b73be
7 changed files with 761 additions and 9 deletions
|
|
@ -4,7 +4,19 @@
|
|||
folded children, so adding a node kind can't silently break a pass), run
|
||||
in a fixed order by run-passes between the analyzer and the back end.
|
||||
Portable Clojure: same constraint as jolt.analyzer — kernel-tier fns +
|
||||
seed primitives only (it loads with the compiler namespaces).")
|
||||
seed primitives only (it loads with the compiler namespaces).
|
||||
|
||||
Passes:
|
||||
const-fold — bottom-up numeric folding + dead-branch removal (always).
|
||||
inline-node — splice small direct-linked fns at their call sites.
|
||||
flatten-lets — hoist a let bound directly to another let's bindings.
|
||||
scalar-replace — AOT escape analysis: drop map allocations whose only use
|
||||
is constant-keyword lookup ((:r {:r a ..}) -> a).
|
||||
|
||||
inline + flatten + scalar-replace run only when host/inline-enabled? (user
|
||||
code opted into direct-linking, jolt-87f); core and the bootstrap compiler
|
||||
compile with const-fold alone, exactly as before."
|
||||
(:require [jolt.host :refer [inline-enabled? inline-ir]]))
|
||||
|
||||
;; Folding computes with THE ACTUAL jolt fns, so a folded result matches what
|
||||
;; the unfolded code would produce at runtime by construction. Conservative:
|
||||
|
|
@ -96,7 +108,608 @@
|
|||
;; leaves and anything this pass doesn't know: unchanged
|
||||
:else node)))
|
||||
|
||||
(defn run-passes
|
||||
"All passes, in order. The back end applies this to every analyzed form."
|
||||
;; ---------------------------------------------------------------------------
|
||||
;; Shared state: a dirty flag the fixpoint loop reads, and a fresh-name counter
|
||||
;; for alpha-renaming inlined bodies (same atom pattern as analyzer/gen-name).
|
||||
;; ---------------------------------------------------------------------------
|
||||
(def ^:private dirty (atom false))
|
||||
(defn- mark! [] (reset! dirty true))
|
||||
|
||||
(def ^:private fresh-counter (atom 0))
|
||||
(defn- fresh [base]
|
||||
(let [n @fresh-counter]
|
||||
(swap! fresh-counter inc)
|
||||
(str base "__il" n)))
|
||||
|
||||
;; ---------------------------------------------------------------------------
|
||||
;; Inlining (jolt-87f). The back end stashes {:params [..] :body ir} on the var
|
||||
;; cell of each single-fixed-arity defn compiled under :inline?; here we splice
|
||||
;; that body at a call site. To stay capture-safe we ALPHA-RENAME the body —
|
||||
;; every param and every inner let-bound name becomes a globally fresh name —
|
||||
;; then bind the fresh params to the call's args in a wrapping let (args eval
|
||||
;; once, in source order). After full renaming no name in the spliced body can
|
||||
;; collide with a caller local, so flatten-lets and scalar-replace need no
|
||||
;; shadowing logic.
|
||||
;; ---------------------------------------------------------------------------
|
||||
|
||||
(defn- safe-op? [op]
|
||||
;; ops an inline-eligible body may contain. recur/loop/fn/try/def are excluded
|
||||
;; (binding/control forms the splicer doesn't handle), so a body containing one
|
||||
;; is rejected by body-size below and never inlined or alpha-renamed.
|
||||
(or (= op :const) (= op :local) (= op :var) (= op :host) (= op :the-var)
|
||||
(= op :quote) (= op :if) (= op :do) (= op :let) (= op :invoke)
|
||||
(= op :map) (= op :vector) (= op :set) (= op :throw)))
|
||||
|
||||
(def ^:private inline-budget 120)
|
||||
|
||||
(defn- body-size
|
||||
"Node count of an inline-eligible body. A disallowed op contributes a number
|
||||
larger than any budget, so the caller's (<= size budget) test fails and we
|
||||
never try to inline (or alpha-rename) such a body."
|
||||
[node]
|
||||
(const-fold node))
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(not (safe-op? op)) 100000
|
||||
(= op :if) (+ 1 (body-size (get node :test))
|
||||
(body-size (get node :then))
|
||||
(body-size (get node :else)))
|
||||
(= op :do) (+ 1 (reduce + 0 (mapv body-size (get node :statements)))
|
||||
(body-size (get node :ret)))
|
||||
(= op :throw) (+ 1 (body-size (get node :expr)))
|
||||
(= op :invoke) (+ 1 (body-size (get node :fn))
|
||||
(reduce + 0 (mapv body-size (get node :args))))
|
||||
(= op :let) (+ 1 (reduce + 0 (mapv (fn [b] (body-size (nth b 1))) (get node :bindings)))
|
||||
(body-size (get node :body)))
|
||||
(= op :vector) (+ 1 (reduce + 0 (mapv body-size (get node :items))))
|
||||
(= op :set) (+ 1 (reduce + 0 (mapv body-size (get node :items))))
|
||||
(= op :map) (+ 1 (reduce + 0 (mapv (fn [pr] (+ (body-size (nth pr 0))
|
||||
(body-size (nth pr 1))))
|
||||
(get node :pairs))))
|
||||
:else 1)))
|
||||
|
||||
(defn- subst
|
||||
"Substitute locals in node per env (a map name -> replacement IR node), and
|
||||
alpha-rename every inner :let binder to a globally fresh name (so the spliced
|
||||
body shares no name with the caller). env seeds the params: a trivial arg
|
||||
(local/const) maps a param straight to the arg node (copy propagation — this
|
||||
is what lets scalar-replace see a map-literal arg through the call boundary);
|
||||
a non-trivial arg maps the param to a fresh :local that a wrapping let binds."
|
||||
[node env]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :local) (let [r (get env (get node :name))]
|
||||
(if r r node))
|
||||
(= op :if) (assoc node
|
||||
:test (subst (get node :test) env)
|
||||
:then (subst (get node :then) env)
|
||||
:else (subst (get node :else) env))
|
||||
(= op :do) (assoc node
|
||||
:statements (mapv (fn [s] (subst s env)) (get node :statements))
|
||||
:ret (subst (get node :ret) env))
|
||||
(= op :throw) (assoc node :expr (subst (get node :expr) env))
|
||||
(= op :invoke) (assoc node
|
||||
:fn (subst (get node :fn) env)
|
||||
:args (mapv (fn [a] (subst a env)) (get node :args)))
|
||||
(= op :vector) (assoc node :items (mapv (fn [x] (subst x env)) (get node :items)))
|
||||
(= op :set) (assoc node :items (mapv (fn [x] (subst x env)) (get node :items)))
|
||||
(= op :map) (assoc node :pairs (mapv (fn [pr] [(subst (nth pr 0) env)
|
||||
(subst (nth pr 1) env)])
|
||||
(get node :pairs)))
|
||||
(= op :let)
|
||||
(let [res (reduce (fn [acc b]
|
||||
(let [e (nth acc 0)
|
||||
binds (nth acc 1)
|
||||
nm (nth b 0)
|
||||
init (subst (nth b 1) e)
|
||||
f (fresh nm)]
|
||||
[(assoc e nm {:op :local :name f}) (conj binds [f init])]))
|
||||
[env []]
|
||||
(get node :bindings))]
|
||||
(assoc node :bindings (nth res 1) :body (subst (get node :body) (nth res 0))))
|
||||
;; :const :var :host :the-var :quote — no locals to substitute
|
||||
:else node)))
|
||||
|
||||
(defn- trivial-arg? [n]
|
||||
;; safe to substitute directly (immutable, free to duplicate): a local read or
|
||||
;; a constant. Everything else is let-bound so it evaluates exactly once.
|
||||
(let [op (get n :op)] (or (= op :local) (= op :const))))
|
||||
|
||||
(defn- body-closed?
|
||||
"True if every :local in node is bound — by a param (in the initial scope set)
|
||||
or by an enclosing :let within the body. A self-recursive fn fails this: the
|
||||
analyzer binds the fn's own name as a local, so its body has a FREE local (the
|
||||
self-reference) that would dangle once the body is spliced elsewhere."
|
||||
[node scope]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :local) (contains? scope (get node :name))
|
||||
(= op :const) true
|
||||
(= op :var) true
|
||||
(= op :host) true
|
||||
(= op :the-var) true
|
||||
(= op :quote) true
|
||||
(= op :if) (and (body-closed? (get node :test) scope)
|
||||
(body-closed? (get node :then) scope)
|
||||
(body-closed? (get node :else) scope))
|
||||
(= op :do) (and (every? (fn [s] (body-closed? s scope)) (get node :statements))
|
||||
(body-closed? (get node :ret) scope))
|
||||
(= op :throw) (body-closed? (get node :expr) scope)
|
||||
(= op :invoke) (and (body-closed? (get node :fn) scope)
|
||||
(every? (fn [a] (body-closed? a scope)) (get node :args)))
|
||||
(= op :vector) (every? (fn [x] (body-closed? x scope)) (get node :items))
|
||||
(= op :set) (every? (fn [x] (body-closed? x scope)) (get node :items))
|
||||
(= op :map) (every? (fn [pr] (and (body-closed? (nth pr 0) scope)
|
||||
(body-closed? (nth pr 1) scope)))
|
||||
(get node :pairs))
|
||||
(= op :let)
|
||||
(let [res (reduce (fn [acc b]
|
||||
(let [sc (nth acc 0) ok (nth acc 1)]
|
||||
(if (not ok)
|
||||
acc
|
||||
[(conj sc (nth b 0)) (body-closed? (nth b 1) sc)])))
|
||||
[scope true]
|
||||
(get node :bindings))]
|
||||
(and (nth res 1) (body-closed? (get node :body) (nth res 0))))
|
||||
:else false)))
|
||||
|
||||
(defn- try-inline
|
||||
"node is an :invoke whose children are already inlined. If its :fn is a var
|
||||
with a stashed, in-budget, arity-matching inline body, return the spliced
|
||||
let; else node."
|
||||
[node ctx]
|
||||
(let [f (get node :fn)]
|
||||
(if (= :var (get f :op))
|
||||
(let [stash (inline-ir ctx (get f :ns) (get f :name))]
|
||||
(if stash
|
||||
(let [params (get stash :params)
|
||||
body (get stash :body)
|
||||
args (get node :args)]
|
||||
(if (and (= (count params) (count args))
|
||||
(<= (body-size body) inline-budget)
|
||||
(body-closed? body (reduce conj #{} params)))
|
||||
(let [n (count params)
|
||||
;; trivial args (local/const) substitute straight in (copy
|
||||
;; propagation); the rest get a fresh local bound once in a
|
||||
;; wrapping let, so they evaluate exactly once in source order.
|
||||
res (loop [i 0 env {} binds []]
|
||||
(if (< i n)
|
||||
(let [p (nth params i) a (nth args i)]
|
||||
(if (trivial-arg? a)
|
||||
(recur (inc i) (assoc env p a) binds)
|
||||
(let [f (fresh p)]
|
||||
(recur (inc i)
|
||||
(assoc env p {:op :local :name f})
|
||||
(conj binds [f a])))))
|
||||
[env binds]))
|
||||
env (nth res 0)
|
||||
binds (nth res 1)
|
||||
rbody (subst body env)]
|
||||
(mark!)
|
||||
(if (= 0 (count binds))
|
||||
rbody
|
||||
{:op :let :bindings binds :body rbody}))
|
||||
node))
|
||||
node))
|
||||
node)))
|
||||
|
||||
(defn- inline-node
|
||||
"Bottom-up: inline children first, then attempt to inline this node."
|
||||
[node ctx]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :invoke)
|
||||
(try-inline (assoc node
|
||||
:fn (inline-node (get node :fn) ctx)
|
||||
:args (mapv (fn [a] (inline-node a ctx)) (get node :args)))
|
||||
ctx)
|
||||
(= op :if) (assoc node
|
||||
:test (inline-node (get node :test) ctx)
|
||||
:then (inline-node (get node :then) ctx)
|
||||
:else (inline-node (get node :else) ctx))
|
||||
(= op :do) (assoc node
|
||||
:statements (mapv (fn [s] (inline-node s ctx)) (get node :statements))
|
||||
:ret (inline-node (get node :ret) ctx))
|
||||
(= op :let) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (inline-node (nth b 1) ctx)]) (get node :bindings))
|
||||
:body (inline-node (get node :body) ctx))
|
||||
(= op :loop) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (inline-node (nth b 1) ctx)]) (get node :bindings))
|
||||
:body (inline-node (get node :body) ctx))
|
||||
(= op :recur) (assoc node :args (mapv (fn [a] (inline-node a ctx)) (get node :args)))
|
||||
(= op :fn) (assoc node :arities (mapv (fn [a] (assoc a :body (inline-node (get a :body) ctx)))
|
||||
(get node :arities)))
|
||||
(= op :def) (assoc node :init (inline-node (get node :init) ctx))
|
||||
(= op :throw) (assoc node :expr (inline-node (get node :expr) ctx))
|
||||
(= op :vector) (assoc node :items (mapv (fn [x] (inline-node x ctx)) (get node :items)))
|
||||
(= op :set) (assoc node :items (mapv (fn [x] (inline-node x ctx)) (get node :items)))
|
||||
(= op :map) (assoc node :pairs (mapv (fn [pr] [(inline-node (nth pr 0) ctx)
|
||||
(inline-node (nth pr 1) ctx)])
|
||||
(get node :pairs)))
|
||||
(= op :try) (assoc node
|
||||
:body (inline-node (get node :body) ctx)
|
||||
:catch-body (when (get node :catch-body) (inline-node (get node :catch-body) ctx))
|
||||
:finally (when (get node :finally) (inline-node (get node :finally) ctx)))
|
||||
:else node)))
|
||||
|
||||
;; ---------------------------------------------------------------------------
|
||||
;; flatten-lets: (let [a (let [b X] Y) ..] body) -> (let [b X a Y ..] body).
|
||||
;; Safe because inlined bodies are alpha-renamed (every binder unique), so the
|
||||
;; hoisted bindings can't collide. Exposes a map-returning init directly to
|
||||
;; scalar-replace when it was wrapped in an inlined arg's let.
|
||||
;; ---------------------------------------------------------------------------
|
||||
(defn- flatten-let-bindings [binds]
|
||||
;; returns a flattened binding vector; sets dirty when it hoists.
|
||||
(reduce (fn [out b]
|
||||
(let [nm (nth b 0) init (nth b 1)]
|
||||
(if (= :let (get init :op))
|
||||
(do (mark!)
|
||||
(conj (reduce conj out (get init :bindings))
|
||||
[nm (get init :body)]))
|
||||
(conj out b))))
|
||||
[]
|
||||
binds))
|
||||
|
||||
(defn- flatten-lets [node]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :let) (assoc node
|
||||
:bindings (flatten-let-bindings
|
||||
(mapv (fn [b] [(nth b 0) (flatten-lets (nth b 1))]) (get node :bindings)))
|
||||
:body (flatten-lets (get node :body)))
|
||||
(= op :if) (assoc node
|
||||
:test (flatten-lets (get node :test))
|
||||
:then (flatten-lets (get node :then))
|
||||
:else (flatten-lets (get node :else)))
|
||||
(= op :do) (assoc node
|
||||
:statements (mapv flatten-lets (get node :statements))
|
||||
:ret (flatten-lets (get node :ret)))
|
||||
(= op :throw) (assoc node :expr (flatten-lets (get node :expr)))
|
||||
(= op :invoke) (assoc node
|
||||
:fn (flatten-lets (get node :fn))
|
||||
:args (mapv flatten-lets (get node :args)))
|
||||
(= op :vector) (assoc node :items (mapv flatten-lets (get node :items)))
|
||||
(= op :set) (assoc node :items (mapv flatten-lets (get node :items)))
|
||||
(= op :map) (assoc node :pairs (mapv (fn [pr] [(flatten-lets (nth pr 0))
|
||||
(flatten-lets (nth pr 1))])
|
||||
(get node :pairs)))
|
||||
(= op :loop) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (flatten-lets (nth b 1))]) (get node :bindings))
|
||||
:body (flatten-lets (get node :body)))
|
||||
(= op :recur) (assoc node :args (mapv flatten-lets (get node :args)))
|
||||
(= op :fn) (assoc node :arities (mapv (fn [a] (assoc a :body (flatten-lets (get a :body))))
|
||||
(get node :arities)))
|
||||
(= op :def) (assoc node :init (flatten-lets (get node :init)))
|
||||
(= op :try) (assoc node
|
||||
:body (flatten-lets (get node :body))
|
||||
:catch-body (when (get node :catch-body) (flatten-lets (get node :catch-body)))
|
||||
:finally (when (get node :finally) (flatten-lets (get node :finally))))
|
||||
:else node)))
|
||||
|
||||
;; ---------------------------------------------------------------------------
|
||||
;; scalar-replace (AOT escape analysis). A map allocation whose ONLY use is
|
||||
;; constant-keyword lookup is dead weight: replace each (:k m) with the literal
|
||||
;; value at :k and drop the allocation. Two forms:
|
||||
;; (a) direct: (:k {:k a ..}) -> a
|
||||
;; (b) let-bound: (let [m {:k a ..}] .. (:k m) ..) -> .. a .. (m non-escaping)
|
||||
;; Both require the dropped sibling values to be pure (we duplicate/discard them).
|
||||
;; ---------------------------------------------------------------------------
|
||||
|
||||
(def ^:private pure-fns
|
||||
#{"+" "-" "*" "/" "<" ">" "<=" ">=" "=" "not=" "inc" "dec"
|
||||
"mod" "rem" "quot" "min" "max" "abs"
|
||||
"nil?" "some?" "not" "get" "zero?" "pos?" "neg?" "even?" "odd?"
|
||||
"bit-and" "bit-or" "bit-xor"})
|
||||
|
||||
(defn- pure-fn? [f]
|
||||
(let [op (get f :op)]
|
||||
(cond
|
||||
(and (= op :const) (keyword? (get f :val))) true
|
||||
(= op :var) (and (= "clojure.core" (get f :ns)) (contains? pure-fns (get f :name)))
|
||||
(= op :host) (contains? pure-fns (get f :name))
|
||||
:else false)))
|
||||
|
||||
(defn- pure?
|
||||
"Conservative: true only for expressions with no side effects that are safe to
|
||||
duplicate or discard. A var/host ref is a pure read; an invoke is pure only
|
||||
for a known-pure fn (arithmetic, comparison, keyword lookup, get)."
|
||||
[node]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :const) true
|
||||
(= op :local) true
|
||||
(= op :var) true
|
||||
(= op :host) true
|
||||
(= op :the-var) true
|
||||
(= op :quote) true
|
||||
(= op :if) (and (pure? (get node :test)) (pure? (get node :then)) (pure? (get node :else)))
|
||||
(= op :do) (and (every? pure? (get node :statements)) (pure? (get node :ret)))
|
||||
(= op :let) (and (every? (fn [b] (pure? (nth b 1))) (get node :bindings)) (pure? (get node :body)))
|
||||
(= op :vector) (every? pure? (get node :items))
|
||||
(= op :set) (every? pure? (get node :items))
|
||||
(= op :map) (every? (fn [pr] (and (pure? (nth pr 0)) (pure? (nth pr 1)))) (get node :pairs))
|
||||
(= op :invoke) (and (pure-fn? (get node :fn)) (every? pure? (get node :args)))
|
||||
:else false)))
|
||||
|
||||
(defn- scalar-const? [n]
|
||||
(and (= :const (get n :op))
|
||||
(let [v (get n :val)] (or (keyword? v) (string? v) (number? v) (boolean? v)))))
|
||||
|
||||
(defn- const-key-map? [node]
|
||||
(let [prs (get node :pairs)]
|
||||
(and (> (count prs) 0)
|
||||
(every? (fn [pr] (scalar-const? (nth pr 0))) prs))))
|
||||
|
||||
(defn- all-vals-pure? [node]
|
||||
(every? (fn [pr] (pure? (nth pr 1))) (get node :pairs)))
|
||||
|
||||
(defn- map-val
|
||||
"The value IR at scalar key k in a const-key map node, or a nil constant when k
|
||||
is absent (struct-eligible literal: a missing key reads nil, like the back end)."
|
||||
[mapnode k]
|
||||
(let [prs (get mapnode :pairs) n (count prs)]
|
||||
(loop [i 0]
|
||||
(if (< i n)
|
||||
(let [pr (nth prs i)]
|
||||
(if (= (get (nth pr 0) :val) k) (nth pr 1) (recur (inc i))))
|
||||
{:op :const :val nil}))))
|
||||
|
||||
(defn- lookup-key
|
||||
"If node is a constant-keyword lookup of (:local nm) — either (:k nm) or
|
||||
(get nm :k) — return the keyword k; else nil."
|
||||
[node nm]
|
||||
(if (= :invoke (get node :op))
|
||||
(let [f (get node :fn) args (get node :args)]
|
||||
(cond
|
||||
(and (= :const (get f :op)) (keyword? (get f :val))
|
||||
(= 1 (count args))
|
||||
(= :local (get (nth args 0) :op)) (= nm (get (nth args 0) :name)))
|
||||
(get f :val)
|
||||
|
||||
(and (or (and (= :var (get f :op)) (= "clojure.core" (get f :ns)) (= "get" (get f :name)))
|
||||
(and (= :host (get f :op)) (= "get" (get f :name))))
|
||||
(= 2 (count args))
|
||||
(= :local (get (nth args 0) :op)) (= nm (get (nth args 0) :name))
|
||||
(scalar-const? (nth args 1)))
|
||||
(get (nth args 1) :val)
|
||||
|
||||
:else nil))
|
||||
nil))
|
||||
|
||||
(defn- any-binding-named? [binds nm]
|
||||
(loop [i 0]
|
||||
(if (< i (count binds))
|
||||
(if (= nm (nth (nth binds i) 0)) true (recur (inc i)))
|
||||
false)))
|
||||
|
||||
(defn- any-name? [names nm]
|
||||
(loop [i 0]
|
||||
(if (< i (count names))
|
||||
(if (= nm (nth names i)) true (recur (inc i)))
|
||||
false)))
|
||||
|
||||
(defn- local-escapes?
|
||||
"Does local nm escape in node — i.e. is it used anywhere other than as the
|
||||
subject of a constant-keyword lookup? Precise over straight-line expression
|
||||
ops; conservatively true for loop/fn/try/recur/def (and any rebinding of nm),
|
||||
so scalar replacement only fires where the whole use region is simple."
|
||||
[node nm]
|
||||
(let [op (get node :op)
|
||||
k (lookup-key node nm)]
|
||||
(cond
|
||||
;; an ok lookup of nm: nm itself is consumed; still scan any extra args
|
||||
;; (a get default could reference nm), never the subject local at arg 0.
|
||||
k (let [args (get node :args)]
|
||||
(if (> (count args) 1)
|
||||
(loop [i 1]
|
||||
(if (< i (count args))
|
||||
(if (local-escapes? (nth args i) nm) true (recur (inc i)))
|
||||
false))
|
||||
false))
|
||||
(= op :local) (= nm (get node :name))
|
||||
(= op :const) false
|
||||
(= op :var) false
|
||||
(= op :host) false
|
||||
(= op :the-var) false
|
||||
(= op :quote) false
|
||||
(= op :if) (or (local-escapes? (get node :test) nm)
|
||||
(local-escapes? (get node :then) nm)
|
||||
(local-escapes? (get node :else) nm))
|
||||
(= op :do) (or (loop [i 0 ss (get node :statements)]
|
||||
(if (< i (count ss))
|
||||
(if (local-escapes? (nth ss i) nm) true (recur (inc i) ss))
|
||||
false))
|
||||
(local-escapes? (get node :ret) nm))
|
||||
(= op :throw) (local-escapes? (get node :expr) nm)
|
||||
(= op :invoke) (or (local-escapes? (get node :fn) nm)
|
||||
(loop [i 0 as (get node :args)]
|
||||
(if (< i (count as))
|
||||
(if (local-escapes? (nth as i) nm) true (recur (inc i) as))
|
||||
false)))
|
||||
(= op :vector) (loop [i 0 xs (get node :items)]
|
||||
(if (< i (count xs))
|
||||
(if (local-escapes? (nth xs i) nm) true (recur (inc i) xs))
|
||||
false))
|
||||
(= op :set) (loop [i 0 xs (get node :items)]
|
||||
(if (< i (count xs))
|
||||
(if (local-escapes? (nth xs i) nm) true (recur (inc i) xs))
|
||||
false))
|
||||
(= op :map) (loop [i 0 ps (get node :pairs)]
|
||||
(if (< i (count ps))
|
||||
(if (or (local-escapes? (nth (nth ps i) 0) nm)
|
||||
(local-escapes? (nth (nth ps i) 1) nm))
|
||||
true (recur (inc i) ps))
|
||||
false))
|
||||
(= op :let) (let [binds (get node :bindings)]
|
||||
(if (any-binding-named? binds nm)
|
||||
true ;; nm rebound here — bail (safe; inlined names are unique)
|
||||
(or (loop [i 0]
|
||||
(if (< i (count binds))
|
||||
(if (local-escapes? (nth (nth binds i) 1) nm) true (recur (inc i)))
|
||||
false))
|
||||
(local-escapes? (get node :body) nm))))
|
||||
;; recur binds nothing — its args are ordinary expressions (this is the
|
||||
;; common loop-body tail; treating it as a blanket escape would block
|
||||
;; scalar replacement in every loop).
|
||||
(= op :recur) (loop [i 0 as (get node :args)]
|
||||
(if (< i (count as))
|
||||
(if (local-escapes? (nth as i) nm) true (recur (inc i) as))
|
||||
false))
|
||||
(= op :loop) (let [binds (get node :bindings)]
|
||||
(if (any-binding-named? binds nm)
|
||||
true
|
||||
(or (loop [i 0]
|
||||
(if (< i (count binds))
|
||||
(if (local-escapes? (nth (nth binds i) 1) nm) true (recur (inc i)))
|
||||
false))
|
||||
(local-escapes? (get node :body) nm))))
|
||||
(= op :fn) (loop [i 0 ars (get node :arities)]
|
||||
(if (< i (count ars))
|
||||
(let [ar (nth ars i)
|
||||
ps (get ar :params)]
|
||||
;; a param (or rest) shadowing nm hides ours in that arity
|
||||
(if (or (any-name? ps nm) (= nm (get ar :rest)))
|
||||
true
|
||||
(if (local-escapes? (get ar :body) nm) true (recur (inc i) ars))))
|
||||
false))
|
||||
(= op :try) (or (local-escapes? (get node :body) nm)
|
||||
(let [cb (get node :catch-body)]
|
||||
(and cb (not (= nm (get node :catch-sym))) (local-escapes? cb nm)))
|
||||
(let [f (get node :finally)] (and f (local-escapes? f nm))))
|
||||
(= op :def) (local-escapes? (get node :init) nm)
|
||||
:else true)))
|
||||
|
||||
(defn- subst-lookup
|
||||
"Replace every (:k nm)/(get nm :k) in node with the map value at k. The caller
|
||||
guarantees (via local-escapes?) that nm is never rebound here and appears only
|
||||
as a lookup subject, so no shadowing logic is needed."
|
||||
[node nm mapnode]
|
||||
(let [op (get node :op)
|
||||
k (lookup-key node nm)]
|
||||
(cond
|
||||
k (map-val mapnode k)
|
||||
(= op :if) (assoc node
|
||||
:test (subst-lookup (get node :test) nm mapnode)
|
||||
:then (subst-lookup (get node :then) nm mapnode)
|
||||
:else (subst-lookup (get node :else) nm mapnode))
|
||||
(= op :do) (assoc node
|
||||
:statements (mapv (fn [s] (subst-lookup s nm mapnode)) (get node :statements))
|
||||
:ret (subst-lookup (get node :ret) nm mapnode))
|
||||
(= op :throw) (assoc node :expr (subst-lookup (get node :expr) nm mapnode))
|
||||
(= op :invoke) (assoc node
|
||||
:fn (subst-lookup (get node :fn) nm mapnode)
|
||||
:args (mapv (fn [a] (subst-lookup a nm mapnode)) (get node :args)))
|
||||
(= op :vector) (assoc node :items (mapv (fn [x] (subst-lookup x nm mapnode)) (get node :items)))
|
||||
(= op :set) (assoc node :items (mapv (fn [x] (subst-lookup x nm mapnode)) (get node :items)))
|
||||
(= op :map) (assoc node :pairs (mapv (fn [pr] [(subst-lookup (nth pr 0) nm mapnode)
|
||||
(subst-lookup (nth pr 1) nm mapnode)])
|
||||
(get node :pairs)))
|
||||
(= op :let) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (subst-lookup (nth b 1) nm mapnode)]) (get node :bindings))
|
||||
:body (subst-lookup (get node :body) nm mapnode))
|
||||
;; the caller's escape check guarantees nm is not rebound in these, so we
|
||||
;; recurse uniformly — leaving any lookup of nm un-substituted would dangle.
|
||||
(= op :recur) (assoc node :args (mapv (fn [a] (subst-lookup a nm mapnode)) (get node :args)))
|
||||
(= op :loop) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (subst-lookup (nth b 1) nm mapnode)]) (get node :bindings))
|
||||
:body (subst-lookup (get node :body) nm mapnode))
|
||||
(= op :fn) (assoc node :arities (mapv (fn [a] (assoc a :body (subst-lookup (get a :body) nm mapnode)))
|
||||
(get node :arities)))
|
||||
(= op :try) (assoc node
|
||||
:body (subst-lookup (get node :body) nm mapnode)
|
||||
:catch-body (when (get node :catch-body) (subst-lookup (get node :catch-body) nm mapnode))
|
||||
:finally (when (get node :finally) (subst-lookup (get node :finally) nm mapnode)))
|
||||
:else node)))
|
||||
|
||||
(defn- fold-kw-literal
|
||||
"(a) (:k {:k a ..}) -> a (siblings pure)."
|
||||
[node]
|
||||
(let [f (get node :fn) args (get node :args)]
|
||||
(if (and (= :const (get f :op)) (keyword? (get f :val)) (= 1 (count args)))
|
||||
(let [m (nth args 0)]
|
||||
(if (and (= :map (get m :op)) (const-key-map? m) (all-vals-pure? m))
|
||||
(do (mark!) (map-val m (get f :val)))
|
||||
node))
|
||||
node)))
|
||||
|
||||
(defn- elim-let-maps
|
||||
"(b) Drop the first non-escaping let binding whose init is a pure const-key map
|
||||
literal, substituting its field lookups into the remaining bindings and body.
|
||||
Fixpoint re-runs us for the rest, so one elimination per call keeps it simple."
|
||||
[node]
|
||||
(let [binds (get node :bindings) n (count binds) body (get node :body)]
|
||||
(loop [i 0]
|
||||
(if (< i n)
|
||||
(let [b (nth binds i) nm (nth b 0) init (nth b 1)]
|
||||
(if (and (= :map (get init :op)) (const-key-map? init) (all-vals-pure? init)
|
||||
(not (any-binding-named? (subvec binds (inc i) n) nm))
|
||||
(not (loop [j (inc i)]
|
||||
(if (< j n)
|
||||
(if (local-escapes? (nth (nth binds j) 1) nm) true (recur (inc j)))
|
||||
false)))
|
||||
(not (local-escapes? body nm)))
|
||||
(let [head (subvec binds 0 i)
|
||||
tail (mapv (fn [bb] [(nth bb 0) (subst-lookup (nth bb 1) nm init)])
|
||||
(subvec binds (inc i) n))
|
||||
newbinds (reduce conj head tail)
|
||||
newbody (subst-lookup body nm init)]
|
||||
(mark!)
|
||||
(if (= 0 (count newbinds))
|
||||
newbody
|
||||
(assoc node :bindings newbinds :body newbody)))
|
||||
(recur (inc i))))
|
||||
node))))
|
||||
|
||||
(defn- scalar-replace
|
||||
"Bottom-up: scalar-replace children, then apply (a) at invokes / (b) at lets."
|
||||
[node]
|
||||
(let [op (get node :op)]
|
||||
(cond
|
||||
(= op :invoke)
|
||||
(fold-kw-literal (assoc node
|
||||
:fn (scalar-replace (get node :fn))
|
||||
:args (mapv scalar-replace (get node :args))))
|
||||
(= op :let)
|
||||
(elim-let-maps (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (scalar-replace (nth b 1))]) (get node :bindings))
|
||||
:body (scalar-replace (get node :body))))
|
||||
(= op :if) (assoc node
|
||||
:test (scalar-replace (get node :test))
|
||||
:then (scalar-replace (get node :then))
|
||||
:else (scalar-replace (get node :else)))
|
||||
(= op :do) (assoc node
|
||||
:statements (mapv scalar-replace (get node :statements))
|
||||
:ret (scalar-replace (get node :ret)))
|
||||
(= op :throw) (assoc node :expr (scalar-replace (get node :expr)))
|
||||
(= op :vector) (assoc node :items (mapv scalar-replace (get node :items)))
|
||||
(= op :set) (assoc node :items (mapv scalar-replace (get node :items)))
|
||||
(= op :map) (assoc node :pairs (mapv (fn [pr] [(scalar-replace (nth pr 0))
|
||||
(scalar-replace (nth pr 1))])
|
||||
(get node :pairs)))
|
||||
(= op :loop) (assoc node
|
||||
:bindings (mapv (fn [b] [(nth b 0) (scalar-replace (nth b 1))]) (get node :bindings))
|
||||
:body (scalar-replace (get node :body)))
|
||||
(= op :recur) (assoc node :args (mapv scalar-replace (get node :args)))
|
||||
(= op :fn) (assoc node :arities (mapv (fn [a] (assoc a :body (scalar-replace (get a :body))))
|
||||
(get node :arities)))
|
||||
(= op :def) (assoc node :init (scalar-replace (get node :init)))
|
||||
(= op :try) (assoc node
|
||||
:body (scalar-replace (get node :body))
|
||||
:catch-body (when (get node :catch-body) (scalar-replace (get node :catch-body)))
|
||||
:finally (when (get node :finally) (scalar-replace (get node :finally))))
|
||||
:else node)))
|
||||
|
||||
(defn run-passes
|
||||
"All passes, in order. The back end applies this to every analyzed form. When
|
||||
inlining is enabled for the unit (user code under direct-linking, jolt-87f),
|
||||
run inline + flatten + scalar-replace + const-fold to a capped fixpoint —
|
||||
inlining exposes map literals to lookups, scalar-replace collapses them, which
|
||||
may expose more. Otherwise (core + bootstrap) just const-fold, as before."
|
||||
[node ctx]
|
||||
(if (inline-enabled? ctx)
|
||||
(loop [i 0 n (const-fold node)]
|
||||
(reset! dirty false)
|
||||
(let [n2 (const-fold (scalar-replace (flatten-lets (inline-node n ctx))))]
|
||||
(if (and @dirty (< i 8))
|
||||
(recur (inc i) n2)
|
||||
n2)))
|
||||
(const-fold node)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue