|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (language tree-il analyze) |
|
#:use-module (srfi srfi-1) |
|
#:use-module (srfi srfi-9) |
|
#:use-module (srfi srfi-11) |
|
#:use-module (srfi srfi-26) |
|
#:use-module (ice-9 vlist) |
|
#:use-module (ice-9 match) |
|
#:use-module (system base syntax) |
|
#:use-module (system base message) |
|
#:use-module (system vm program) |
|
#:use-module (language tree-il) |
|
#:use-module (system base pmatch) |
|
#:export (analyze-tree |
|
unused-variable-analysis |
|
unused-toplevel-analysis |
|
shadowed-toplevel-analysis |
|
make-use-before-definition-analysis |
|
arity-analysis |
|
format-analysis |
|
make-analyzer)) |
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <tree-analysis> |
|
(make-tree-analysis down up post init) |
|
tree-analysis? |
|
(down tree-analysis-down) |
|
(up tree-analysis-up) |
|
(post tree-analysis-post) |
|
(init tree-analysis-init)) |
|
|
|
(define (analyze-tree analyses tree env) |
|
"Run all tree analyses listed in ANALYSES on TREE for ENV, using |
|
`tree-il-fold'. Return TREE. The down and up procedures of each |
|
analysis are passed a ``location stack', which is the stack of |
|
`tree-il-src' values for each parent tree (a list); it can be used to |
|
approximate source location when accurate information is missing from a |
|
given `tree-il' element." |
|
|
|
(define (traverse proc update-locs) |
|
|
|
|
|
(lambda (x results) |
|
(let ((locs (update-locs x (car results)))) |
|
(cons locs |
|
(map (lambda (analysis result) |
|
((proc analysis) x result env locs)) |
|
analyses |
|
(cdr results)))))) |
|
|
|
|
|
(define (extend-locs x locs) (cons (tree-il-srcv x) locs)) |
|
(define (shrink-locs x locs) (cdr locs)) |
|
|
|
(let ((results |
|
(tree-il-fold (traverse tree-analysis-down extend-locs) |
|
(traverse tree-analysis-up shrink-locs) |
|
(cons '() |
|
(map tree-analysis-init analyses)) |
|
tree))) |
|
|
|
(for-each (lambda (analysis result) |
|
((tree-analysis-post analysis) result env)) |
|
analyses |
|
(cdr results))) |
|
|
|
tree) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <binding-info> |
|
(make-binding-info vars refs) |
|
binding-info? |
|
(vars binding-info-vars) |
|
(refs binding-info-refs)) |
|
|
|
(define (gensym? sym) |
|
|
|
(string-any #\space (symbol->string sym))) |
|
|
|
(define unused-variable-analysis |
|
|
|
(make-tree-analysis |
|
(lambda (x info env locs) |
|
|
|
|
|
(let ((refs (binding-info-refs info)) |
|
(vars (binding-info-vars info)) |
|
(src (tree-il-srcv x))) |
|
(define (extend inner-vars inner-names) |
|
(fold (lambda (var name vars) |
|
(vhash-consq var (list name src) vars)) |
|
vars |
|
inner-vars |
|
inner-names)) |
|
|
|
(match x |
|
(($ <lexical-ref> src name gensym) |
|
(make-binding-info vars (vhash-consq gensym #t refs))) |
|
(($ <lexical-set> src name gensym) |
|
(make-binding-info vars (vhash-consq gensym #t refs))) |
|
(($ <lambda-case> src req opt rest kw inits gensyms body alt) |
|
(let ((names `(,@req |
|
,@(or opt '()) |
|
,@(if rest (list rest) '()) |
|
,@(if kw (map cadr (cdr kw)) '())))) |
|
(make-binding-info (extend gensyms names) refs))) |
|
(($ <let> src names gensyms) |
|
(make-binding-info (extend gensyms names) refs)) |
|
(($ <letrec> src in-order? names gensyms) |
|
(make-binding-info (extend gensyms names) refs)) |
|
(($ <fix> src names gensyms) |
|
(make-binding-info (extend gensyms names) refs)) |
|
(_ info)))) |
|
|
|
(lambda (x info env locs) |
|
|
|
|
|
(let ((refs (binding-info-refs info)) |
|
(vars (binding-info-vars info))) |
|
(define (shrink inner-vars refs) |
|
(vlist-for-each |
|
(lambda (var) |
|
(let ((gensym (car var))) |
|
|
|
(if (and (memq gensym inner-vars) |
|
(not (vhash-assq gensym refs)) |
|
(not (lambda-case? x))) |
|
(let ((name (cadr var)) |
|
|
|
|
|
(loc (or (caddr var) |
|
(find pair? locs)))) |
|
(if (and (not (gensym? name)) |
|
(not (eq? name '_))) |
|
(warning 'unused-variable loc name)))))) |
|
vars) |
|
(vlist-drop vars (length inner-vars))) |
|
|
|
|
|
|
|
|
|
|
|
(match x |
|
(($ <lambda-case> src req opt rest kw inits gensyms) |
|
(make-binding-info (shrink gensyms refs) refs)) |
|
(($ <let> src names gensyms) |
|
(make-binding-info (shrink gensyms refs) refs)) |
|
(($ <letrec> src in-order? names gensyms) |
|
(make-binding-info (shrink gensyms refs) refs)) |
|
(($ <fix> src names gensyms) |
|
(make-binding-info (shrink gensyms refs) refs)) |
|
(_ info)))) |
|
|
|
(lambda (result env) #t) |
|
(make-binding-info vlist-null vlist-null))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <reference-graph> |
|
(make-reference-graph defs refs toplevel-context) |
|
reference-graph? |
|
(defs reference-graph-defs) |
|
(refs reference-graph-refs) |
|
(toplevel-context reference-graph-toplevel-context)) |
|
|
|
(define (graph-reachable-nodes root refs reachable) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(let loop ((root root) |
|
(path vlist-null) |
|
(result reachable)) |
|
(if (or (vhash-assq root path) |
|
(vhash-assq root result)) |
|
result |
|
(let* ((children (or (and=> (vhash-assq root refs) cdr) '())) |
|
(path (vhash-consq root #t path)) |
|
(result (fold (lambda (kid result) |
|
(loop kid path result)) |
|
result |
|
children))) |
|
(fold (lambda (kid result) |
|
(vhash-consq kid #t result)) |
|
result |
|
children))))) |
|
|
|
(define (graph-reachable-nodes* roots refs) |
|
|
|
(vlist-fold (lambda (root+true result) |
|
(let* ((root (car root+true)) |
|
(reachable (graph-reachable-nodes root refs result))) |
|
(vhash-consq root #t reachable))) |
|
vlist-null |
|
roots)) |
|
|
|
(define (partition* pred vhash) |
|
|
|
(let ((result |
|
(vlist-fold (lambda (k+v result) |
|
(let ((k (car k+v)) |
|
(v (cdr k+v)) |
|
(r1 (car result)) |
|
(r2 (cdr result))) |
|
(if (pred k) |
|
(cons (vhash-consq k v r1) r2) |
|
(cons r1 (vhash-consq k v r2))))) |
|
(cons vlist-null vlist-null) |
|
vhash))) |
|
(values (car result) (cdr result)))) |
|
|
|
(define unused-toplevel-analysis |
|
|
|
(let () |
|
(define initial-graph |
|
(make-reference-graph vlist-null vlist-null #f)) |
|
|
|
(define (add-def graph name src) |
|
(match graph |
|
(($ <reference-graph> defs refs ctx) |
|
(make-reference-graph (vhash-consq name src defs) refs name)))) |
|
|
|
(define (add-ref graph pred succ) |
|
|
|
(match graph |
|
(($ <reference-graph> defs refs ctx) |
|
(let* ((succs (match (vhash-assq pred refs) |
|
((pred . succs) succs) |
|
(#f '()))) |
|
(refs (vhash-consq pred (cons succ succs) refs))) |
|
(make-reference-graph defs refs ctx))))) |
|
|
|
(define (add-ref-from-context graph name) |
|
|
|
(add-ref graph (reference-graph-toplevel-context graph) name)) |
|
|
|
(define (add-root-ref graph name) |
|
|
|
|
|
(add-ref graph #f name)) |
|
|
|
(define (macro-variable? name env) |
|
(and (module? env) |
|
(let ((var (module-variable env name))) |
|
(and var (variable-bound? var) |
|
(macro? (variable-ref var)))))) |
|
|
|
(define (maybe-unused? metadata) |
|
(assq 'maybe-unused metadata)) |
|
|
|
(make-tree-analysis |
|
(lambda (x graph env locs) |
|
|
|
(match x |
|
(($ <toplevel-ref> src mod name) |
|
(add-ref-from-context graph name)) |
|
(($ <toplevel-define> src mod name expr) |
|
(let ((graph (add-def graph name (or src (find pair? locs))))) |
|
(match expr |
|
(($ <lambda> src (? maybe-unused?) body) |
|
(add-root-ref graph name)) |
|
(_ graph)))) |
|
(($ <toplevel-set> src mod name expr) |
|
(add-ref-from-context graph name)) |
|
(_ graph))) |
|
|
|
(lambda (x graph env locs) |
|
|
|
(match x |
|
(($ <toplevel-define>) |
|
(match graph |
|
(($ <reference-graph> defs refs ctx) |
|
(make-reference-graph defs refs #f)))) |
|
(_ graph))) |
|
|
|
(lambda (graph env) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define exports (make-hash-table)) |
|
(when (module? env) |
|
(module-for-each (lambda (name var) (hashq-set! exports var name)) |
|
(module-public-interface env))) |
|
(define (exported? name) |
|
(if (module? env) |
|
(and=> (module-variable env name) |
|
(lambda (var) |
|
(hashq-ref exports var))) |
|
#t)) |
|
|
|
(let-values (((public-defs private-defs) |
|
(partition* (lambda (name) |
|
(or (exported? name) |
|
(macro-variable? name env))) |
|
(reference-graph-defs graph)))) |
|
(let* ((roots (vhash-consq #f #t public-defs)) |
|
(refs (reference-graph-refs graph)) |
|
(reachable (graph-reachable-nodes* roots refs)) |
|
(unused (vlist-filter (lambda (name+src) |
|
(not (vhash-assq (car name+src) |
|
reachable))) |
|
private-defs))) |
|
(vlist-for-each (lambda (name+loc) |
|
(let ((name (car name+loc)) |
|
(loc (cdr name+loc))) |
|
(if (not (gensym? name)) |
|
(warning 'unused-toplevel loc name)))) |
|
unused)))) |
|
|
|
initial-graph))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <module-info> |
|
(module-info location qualified-references |
|
toplevel-references toplevel-definitions) |
|
module-info? |
|
(location module-info-location) |
|
(qualified-references module-info-qualified-references) |
|
(toplevel-references module-info-toplevel-references) |
|
(toplevel-definitions module-info-toplevel-definitions)) |
|
|
|
(define unused-module-analysis |
|
|
|
(make-tree-analysis |
|
(lambda (x info env locs) |
|
|
|
(match x |
|
((or ($ <module-ref> loc module name) |
|
($ <module-set> loc module name)) |
|
(let ((references (module-info-qualified-references info))) |
|
(if (vhash-assoc module references) |
|
info |
|
(module-info (module-info-location info) |
|
(vhash-cons module #t references) |
|
(module-info-toplevel-references info) |
|
(module-info-toplevel-definitions info))))) |
|
((or ($ <toplevel-ref> loc module name) |
|
($ <toplevel-set> loc module name)) |
|
(if (equal? module (module-name env)) |
|
(let ((references (module-info-toplevel-references info))) |
|
(module-info (module-info-location info) |
|
(module-info-qualified-references info) |
|
(cons x references) |
|
(module-info-toplevel-definitions info))) |
|
(let ((references (module-info-qualified-references info))) |
|
(module-info (module-info-location info) |
|
(vhash-cons module #t references) |
|
(module-info-toplevel-references info) |
|
(module-info-toplevel-definitions info))))) |
|
(($ <toplevel-define> loc module name) |
|
(module-info (module-info-location info) |
|
(module-info-qualified-references info) |
|
(module-info-toplevel-references info) |
|
(vhash-consq name x |
|
(module-info-toplevel-definitions info)))) |
|
|
|
|
|
|
|
|
|
|
|
(($ <call> loc ($ <module-ref> _ '(guile) 'define-module*)) |
|
(module-info loc |
|
(module-info-qualified-references info) |
|
(module-info-toplevel-references info) |
|
(module-info-toplevel-definitions info))) |
|
(($ <call> loc ($ <module-ref> _ '(guile) 'process-use-modules)) |
|
(module-info loc |
|
(module-info-qualified-references info) |
|
(module-info-toplevel-references info) |
|
(module-info-toplevel-definitions info))) |
|
|
|
(_ |
|
info))) |
|
|
|
(lambda (x info env locs) |
|
info) |
|
|
|
(lambda (info env) |
|
(define (defining-module ref env) |
|
|
|
|
|
(let ((name (if (toplevel-ref? ref) |
|
(toplevel-ref-name ref) |
|
(toplevel-set-name ref)))) |
|
(match (vhash-assq name (module-info-toplevel-definitions info)) |
|
(#f |
|
|
|
|
|
(and=> (module-variable env name) |
|
(lambda (variable) |
|
(and=> (find (lambda (module) |
|
(module-reverse-lookup module variable)) |
|
(module-uses env)) |
|
module-name)))) |
|
(_ |
|
(if (toplevel-ref? ref) |
|
(toplevel-ref-mod ref) |
|
(toplevel-set-mod ref)))))) |
|
|
|
(define (module-bindings-reexported? module env) |
|
|
|
(let ((module (resolve-interface module)) |
|
(tag (make-prompt-tag))) |
|
(call-with-prompt tag |
|
(lambda () |
|
(module-for-each (lambda (symbol variable) |
|
(when (module-reverse-lookup module variable) |
|
(abort-to-prompt tag))) |
|
(module-public-interface env)) |
|
#f) |
|
(const #t)))) |
|
|
|
(define (module-exports-macros? module) |
|
|
|
(let ((tag (make-prompt-tag))) |
|
(call-with-prompt tag |
|
(lambda () |
|
(module-for-each (lambda (symbol variable) |
|
(when (and (variable-bound? variable) |
|
(macro? |
|
(variable-ref variable))) |
|
(abort-to-prompt tag))) |
|
module) |
|
#f) |
|
(const #t)))) |
|
|
|
(let ((used-modules |
|
(fold (lambda (reference modules) |
|
(let ((module (defining-module reference env))) |
|
(if (or (not module) (vhash-assoc module modules)) |
|
modules |
|
(vhash-cons module #t modules)))) |
|
(module-info-qualified-references info) |
|
(module-info-toplevel-references info)))) |
|
|
|
|
|
|
|
|
|
(for-each (lambda (module) |
|
(unless (or (vhash-assoc (module-name module) |
|
used-modules) |
|
(module-bindings-reexported? |
|
(module-name module) env)) |
|
|
|
|
|
|
|
|
|
(warning 'unused-module |
|
(module-info-location info) |
|
(module-name module) |
|
(not (module-exports-macros? module))))) |
|
(module-uses env)))) |
|
|
|
(module-info #f vlist-null '() vlist-null))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define shadowed-toplevel-analysis |
|
|
|
|
|
(make-tree-analysis |
|
(lambda (x defs env locs) |
|
|
|
(match x |
|
(($ <toplevel-define> src mod name expr) |
|
(match (vhash-assq name defs) |
|
((_ . previous-definition) |
|
(warning 'shadowed-toplevel src name |
|
(tree-il-srcv previous-definition)) |
|
defs) |
|
(#f |
|
(vhash-consq name x defs)))) |
|
(else defs))) |
|
|
|
(lambda (x defs env locs) |
|
|
|
defs) |
|
|
|
(lambda (defs env) |
|
#t) |
|
|
|
vlist-null)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <use-before-def-info> |
|
(make-use-before-def-info depth uses defs) |
|
use-before-def-info? |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(depth use-before-def-info-depth) |
|
(uses use-before-def-info-uses) |
|
(defs use-before-def-info-defs)) |
|
|
|
(define (goops-toplevel-definition proc args env) |
|
|
|
|
|
|
|
|
|
(match (cons proc args) |
|
((($ <module-ref> _ '(oop goops) 'toplevel-define! #f) |
|
($ <const> _ (? symbol? name)) |
|
exp) |
|
|
|
|
|
(vector (module-name env) name exp)) |
|
((($ <toplevel-ref> _ '(oop goops) 'toplevel-define!) |
|
($ <const> _ (? symbol? name)) |
|
exp) |
|
(vector '(oop goops) name exp)) |
|
(_ #f))) |
|
|
|
(define* (make-use-before-definition-analysis #:key (warning-level 0) |
|
(enabled-warnings '())) |
|
|
|
(define (enabled-for-level? level) (<= level warning-level)) |
|
(define-syntax-rule (define-warning enabled |
|
#:level level #:name warning-name) |
|
(define enabled |
|
(or (enabled-for-level? level) |
|
(memq 'warning-name enabled-warnings)))) |
|
(define-warning use-before-definition-enabled |
|
#:level 1 #:name use-before-definition) |
|
(define-warning unbound-variable-enabled |
|
#:level 1 #:name unbound-variable) |
|
(define-warning macro-use-before-definition-enabled |
|
#:level 1 #:name macro-use-before-definition) |
|
(define-warning non-idempotent-definition-enabled |
|
#:level 1 #:name non-idempotent-definition) |
|
(define (resolve mod name defs) |
|
(match (vhash-assoc (cons mod name) defs) |
|
((_ . local-def) |
|
|
|
|
|
local-def) |
|
(#f |
|
(let ((mod (and mod (resolve-module mod #f #:ensure #f)))) |
|
(cond |
|
((not mod) |
|
|
|
|
|
'unknown-module) |
|
((module-local-variable mod name) |
|
|
|
|
|
|
|
(if (module-declarative? mod) |
|
'unknown-declarative |
|
'unknown-imperative)) |
|
((module-variable mod name) |
|
|
|
|
|
'import) |
|
((and=> (module-public-interface mod) |
|
(lambda (interface) |
|
(module-variable interface name))) |
|
|
|
'import) |
|
(else |
|
|
|
'unbound)))))) |
|
|
|
(and |
|
(or use-before-definition-enabled |
|
unbound-variable-enabled |
|
macro-use-before-definition-enabled |
|
non-idempotent-definition-enabled) |
|
(make-tree-analysis |
|
(lambda (x info env locs) |
|
|
|
(define (make-use mod name depth def src) |
|
(vector mod name depth def src)) |
|
(define (make-def is-macro? depth src) |
|
(vector is-macro? depth src)) |
|
(define (nearest-loc src) |
|
(or src (find pair? locs))) |
|
(define (add-use mod name src) |
|
(match info |
|
(($ <use-before-def-info> depth uses defs) |
|
(let* ((def (resolve mod name defs)) |
|
(use (make-use mod name depth def src))) |
|
(make-use-before-def-info depth (cons use uses) defs))))) |
|
(define (add-def mod name src is-macro?) |
|
(match info |
|
(($ <use-before-def-info> depth uses defs) |
|
(let ((def (make-def is-macro? depth src))) |
|
(make-use-before-def-info depth uses |
|
(vhash-cons (cons mod name) def |
|
defs)))))) |
|
(define (macro? x) |
|
(match x |
|
(($ <primcall> _ 'make-syntax-transformer) #t) |
|
(_ #f))) |
|
(match x |
|
(($ <toplevel-ref> src mod name) |
|
(add-use mod name (nearest-loc src))) |
|
(($ <toplevel-set> src mod name) |
|
(add-use mod name (nearest-loc src))) |
|
(($ <toplevel-define> src mod name exp) |
|
(add-def mod name (nearest-loc src) (macro? exp))) |
|
(($ <call> src proc args) |
|
|
|
|
|
(match (goops-toplevel-definition proc args env) |
|
(#f info) |
|
(#(mod name exp) (add-def mod name (nearest-loc src) (macro? exp))))) |
|
((or ($ <lambda>) ($ <conditional>)) |
|
(match info |
|
(($ <use-before-def-info> depth uses defs) |
|
(make-use-before-def-info (1+ depth) uses defs)))) |
|
(_ info))) |
|
|
|
(lambda (x info env locs) |
|
|
|
(match x |
|
((or ($ <lambda>) ($ <conditional>)) |
|
(match info |
|
(($ <use-before-def-info> depth uses defs) |
|
(make-use-before-def-info (1- depth) uses defs)))) |
|
(_ info))) |
|
|
|
(lambda (info env) |
|
(define (compute-macros defs) |
|
(let ((macros (make-hash-table))) |
|
(vlist-for-each (match-lambda |
|
((mod+name . #(is-macro? depth src)) |
|
(when is-macro? |
|
(hash-set! macros mod+name src)))) |
|
defs) |
|
macros)) |
|
|
|
|
|
(match info |
|
(($ <use-before-def-info> 0 uses defs) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(let ((macros (compute-macros defs)) |
|
(issued-unbound-warnings (make-hash-table))) |
|
(for-each |
|
(match-lambda |
|
(#(mod name use-depth def-at-use use-loc) |
|
(cond |
|
((and (hash-ref macros (cons mod name)) |
|
macro-use-before-definition-enabled) |
|
|
|
|
|
|
|
(warning 'macro-use-before-definition use-loc name)) |
|
(else |
|
(let ((def-at-end (resolve mod name defs))) |
|
(match (cons def-at-use def-at-end) |
|
(('import . 'import) #t) |
|
(('import . #(is-macro? def-depth def-loc)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(when (and non-idempotent-definition-enabled |
|
(zero? use-depth) (zero? def-depth)) |
|
(warning 'non-idempotent-definition use-loc name))) |
|
(('unbound . 'unbound) |
|
|
|
|
|
(when unbound-variable-enabled |
|
(unless (hash-ref issued-unbound-warnings |
|
(cons mod name)) |
|
(hash-set! issued-unbound-warnings (cons mod name) #t) |
|
(warning 'unbound-variable use-loc name)))) |
|
(('unbound . _) |
|
|
|
|
|
(when (and use-before-definition-enabled |
|
(zero? use-depth)) |
|
(warning 'use-before-definition use-loc name))) |
|
(('unknown-module . _) |
|
|
|
|
|
|
|
#t) |
|
(('unknown-declarative . 'unknown-declarative) |
|
|
|
|
|
|
|
#t) |
|
(('unknown-declarative . _) |
|
|
|
|
|
|
|
#t) |
|
(('unknown-imperative . _) |
|
|
|
|
|
|
|
#t) |
|
(((? vector) . (? vector?)) |
|
|
|
#t))))))) |
|
(reverse uses)))))) |
|
|
|
(make-use-before-def-info 0 '() vlist-null)))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <arity-info> |
|
(make-arity-info toplevel-calls lexical-lambdas toplevel-lambdas) |
|
arity-info? |
|
(toplevel-calls toplevel-procedure-calls) |
|
(lexical-lambdas lexical-lambdas) |
|
(toplevel-lambdas toplevel-lambdas)) |
|
|
|
(define (validate-arity proc call lexical?) |
|
|
|
|
|
|
|
(define (filter-keyword-args keywords allow-other-keys? args) |
|
|
|
|
|
|
|
(let loop ((args args) |
|
(result '())) |
|
(if (null? args) |
|
(reverse result) |
|
(let ((arg (car args))) |
|
(if (and (const? arg) |
|
(or (memq (const-exp arg) keywords) |
|
(and allow-other-keys? |
|
(keyword? (const-exp arg))))) |
|
(loop (if (pair? (cdr args)) |
|
(cddr args) |
|
'()) |
|
result) |
|
(loop (cdr args) |
|
(cons arg result))))))) |
|
|
|
(define (arities proc) |
|
|
|
|
|
(define (len x) |
|
(or (and (or (null? x) (pair? x)) |
|
(length x)) |
|
0)) |
|
(cond ((program? proc) |
|
(values (procedure-name proc) |
|
(map (lambda (a) |
|
(list (length (or (assq-ref a 'required) '())) |
|
(length (or (assq-ref a 'optional) '())) |
|
(and (assq-ref a 'rest) #t) |
|
(map car (or (assq-ref a 'keyword) '())) |
|
(assq-ref a 'allow-other-keys?))) |
|
(program-arguments-alists proc)))) |
|
((procedure? proc) |
|
(if (struct? proc) |
|
|
|
(arities (struct-ref proc 0)) |
|
|
|
(let ((arity (procedure-minimum-arity proc))) |
|
(values (procedure-name proc) |
|
(list (list (car arity) (cadr arity) (caddr arity) |
|
#f #f)))))) |
|
(else |
|
(let loop ((name #f) |
|
(proc proc) |
|
(arities '())) |
|
(if (not proc) |
|
(values name (reverse arities)) |
|
(match proc |
|
(($ <lambda-case> src req opt rest kw inits gensyms body alt) |
|
(loop name alt |
|
(cons (list (len req) (len opt) rest |
|
(and (pair? kw) (map car (cdr kw))) |
|
(and (pair? kw) (car kw))) |
|
arities))) |
|
(($ <lambda> src meta body) |
|
(loop (assoc-ref meta 'name) body arities)) |
|
(_ |
|
(values #f #f)))))))) |
|
|
|
(let ((args (call-args call)) |
|
(src (tree-il-srcv call))) |
|
(call-with-values (lambda () (arities proc)) |
|
(lambda (name arities) |
|
(define matches? |
|
(find (lambda (arity) |
|
(pmatch arity |
|
((,req ,opt ,rest? ,kw ,aok?) |
|
(let ((args (if (pair? kw) |
|
(filter-keyword-args kw aok? args) |
|
args))) |
|
(if (and req opt) |
|
(let ((count (length args))) |
|
(and (>= count req) |
|
(or rest? |
|
(<= count (+ req opt))))) |
|
#t))) |
|
(else #t))) |
|
arities)) |
|
|
|
(if (not matches?) |
|
(warning 'arity-mismatch src |
|
(or name (with-output-to-string (lambda () (write proc)))) |
|
lexical?))))) |
|
#t) |
|
|
|
(define arity-analysis |
|
|
|
(make-tree-analysis |
|
(lambda (x info env locs) |
|
|
|
(define (extend lexical-name val info) |
|
|
|
(let ((toplevel-calls (toplevel-procedure-calls info)) |
|
(lexical-lambdas (lexical-lambdas info)) |
|
(toplevel-lambdas (toplevel-lambdas info))) |
|
(match val |
|
(($ <lambda> src meta body) |
|
(make-arity-info toplevel-calls |
|
(vhash-consq lexical-name val |
|
lexical-lambdas) |
|
toplevel-lambdas)) |
|
(($ <lexical-ref> src name gensym) |
|
|
|
(let ((val* (vhash-assq gensym lexical-lambdas))) |
|
(if (pair? val*) |
|
(extend lexical-name (cdr val*) info) |
|
info))) |
|
(($ <toplevel-ref> src mod name) |
|
|
|
(make-arity-info toplevel-calls |
|
(vhash-consq lexical-name val |
|
lexical-lambdas) |
|
toplevel-lambdas)) |
|
(_ info)))) |
|
|
|
(let ((toplevel-calls (toplevel-procedure-calls info)) |
|
(lexical-lambdas (lexical-lambdas info)) |
|
(toplevel-lambdas (toplevel-lambdas info))) |
|
|
|
(match x |
|
(($ <toplevel-define> src mod name exp) |
|
(match exp |
|
(($ <lambda> src' meta body) |
|
(make-arity-info toplevel-calls |
|
lexical-lambdas |
|
(vhash-consq name exp toplevel-lambdas))) |
|
(($ <toplevel-ref> src' mod name) |
|
|
|
(let ((proc (vhash-assq name toplevel-lambdas))) |
|
(make-arity-info toplevel-calls |
|
lexical-lambdas |
|
(vhash-consq (toplevel-define-name x) |
|
(if (pair? proc) |
|
(cdr proc) |
|
exp) |
|
toplevel-lambdas)))) |
|
(_ info))) |
|
(($ <let> src names gensyms vals) |
|
(fold extend info gensyms vals)) |
|
(($ <letrec> src in-order? names gensyms vals) |
|
(fold extend info gensyms vals)) |
|
(($ <fix> src names gensyms vals) |
|
(fold extend info gensyms vals)) |
|
|
|
(($ <call> src proc args) |
|
(match proc |
|
(($ <lambda> src' meta body) |
|
(validate-arity proc x #t) |
|
info) |
|
(($ <toplevel-ref> src' mod name) |
|
(make-arity-info (vhash-consq name x toplevel-calls) |
|
lexical-lambdas |
|
toplevel-lambdas)) |
|
(($ <lexical-ref> src' name gensym) |
|
(match (vhash-assq gensym lexical-lambdas) |
|
((gensym . ($ <toplevel-ref> src'' mod name')) |
|
|
|
(make-arity-info (vhash-consq name' x toplevel-calls) |
|
lexical-lambdas |
|
toplevel-lambdas)) |
|
((gensym . proc) |
|
(validate-arity proc x #t) |
|
info) |
|
(#f |
|
|
|
|
|
info))) |
|
(_ info))) |
|
(_ info)))) |
|
|
|
(lambda (x info env locs) |
|
|
|
(define (shrink name val info) |
|
|
|
(let ((toplevel-calls (toplevel-procedure-calls info)) |
|
(lexical-lambdas (lexical-lambdas info)) |
|
(toplevel-lambdas (toplevel-lambdas info))) |
|
(make-arity-info toplevel-calls |
|
(if (vhash-assq name lexical-lambdas) |
|
(vlist-tail lexical-lambdas) |
|
lexical-lambdas) |
|
toplevel-lambdas))) |
|
|
|
(let ((toplevel-calls (toplevel-procedure-calls info)) |
|
(lexical-lambdas (lexical-lambdas info)) |
|
(toplevel-lambdas (toplevel-lambdas info))) |
|
(match x |
|
(($ <let> src names gensyms vals) |
|
(fold shrink info gensyms vals)) |
|
(($ <letrec> src in-order? names gensyms vals) |
|
(fold shrink info gensyms vals)) |
|
(($ <fix> src names gensyms vals) |
|
(fold shrink info gensyms vals)) |
|
|
|
(_ info)))) |
|
|
|
(lambda (result env) |
|
|
|
|
|
(let ((toplevel-calls (toplevel-procedure-calls result)) |
|
(toplevel-lambdas (toplevel-lambdas result))) |
|
(vlist-for-each |
|
(lambda (name+call) |
|
(let* ((name (car name+call)) |
|
(call (cdr name+call)) |
|
(proc |
|
(or (and=> (vhash-assq name toplevel-lambdas) cdr) |
|
(and (module? env) |
|
(false-if-exception |
|
(module-ref env name))))) |
|
(proc* |
|
|
|
(if (toplevel-ref? proc) |
|
(let ((name (toplevel-ref-name proc))) |
|
(and (module? env) |
|
(false-if-exception |
|
(module-ref env name)))) |
|
proc))) |
|
(cond ((lambda? proc*) |
|
(validate-arity proc* call #t)) |
|
((procedure? proc*) |
|
(validate-arity proc* call #f))))) |
|
toplevel-calls))) |
|
|
|
(make-arity-info vlist-null vlist-null vlist-null))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define &syntax-error |
|
|
|
(gensym "format-string-syntax-error")) |
|
|
|
(define (format-string-argument-count fmt) |
|
|
|
|
|
|
|
|
|
|
|
(define (drop-group chars end) |
|
|
|
(let loop ((chars chars) |
|
(tilde? #f)) |
|
(if (null? chars) |
|
(throw &syntax-error 'unterminated-iteration) |
|
(if tilde? |
|
(if (eq? (car chars) end) |
|
(cdr chars) |
|
(loop (cdr chars) #f)) |
|
(if (eq? (car chars) #\~) |
|
(loop (cdr chars) #t) |
|
(loop (cdr chars) #f)))))) |
|
|
|
(define (digit? char) |
|
|
|
(memq char '(#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9))) |
|
|
|
(define (previous-number chars) |
|
|
|
(let ((numbers (take-while digit? chars))) |
|
(and (not (null? numbers)) |
|
(string->number (list->string (reverse numbers)))))) |
|
|
|
(let loop ((chars (string->list fmt)) |
|
(state 'literal) |
|
(params '()) |
|
(conditions '()) |
|
(end-group #f) |
|
(min-count 0) |
|
(max-count 0)) |
|
(if (null? chars) |
|
(if end-group |
|
(throw &syntax-error 'unterminated-conditional) |
|
(values min-count max-count)) |
|
(case state |
|
((tilde) |
|
(case (car chars) |
|
((#\~ #\% #\& #\t #\T #\_ #\newline #\( #\) #\! #\| #\/ #\q #\Q) |
|
(loop (cdr chars) 'literal '() |
|
conditions end-group |
|
min-count max-count)) |
|
((#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\, #\: #\@ #\+ #\- #\#) |
|
(loop (cdr chars) |
|
'tilde (cons (car chars) params) |
|
conditions end-group |
|
min-count max-count)) |
|
((#\v #\V) (loop (cdr chars) |
|
'tilde (cons (car chars) params) |
|
conditions end-group |
|
(+ 1 min-count) |
|
(+ 1 max-count))) |
|
((#\p #\P) (let* ((colon? (memq #\: params)) |
|
(min-count (if colon? |
|
(max 1 min-count) |
|
(+ 1 min-count)))) |
|
(loop (cdr chars) 'literal '() |
|
conditions end-group |
|
min-count |
|
(if colon? |
|
(max max-count min-count) |
|
(+ 1 max-count))))) |
|
((#\[) |
|
(loop chars 'literal '() '() |
|
(let ((selector (previous-number params)) |
|
(at? (memq #\@ params))) |
|
(lambda (chars conds) |
|
|
|
(let ((mins (map car conds)) |
|
(maxs (map cdr conds)) |
|
(sel? (and selector |
|
(< selector (length conds))))) |
|
(if (and (every number? mins) |
|
(every number? maxs)) |
|
(loop chars 'literal '() conditions end-group |
|
(+ min-count |
|
(if sel? |
|
(car (list-ref conds selector)) |
|
(+ (if at? 0 1) |
|
(if (null? mins) |
|
0 |
|
(apply min mins))))) |
|
(+ max-count |
|
(if sel? |
|
(cdr (list-ref conds selector)) |
|
(+ (if at? 0 1) |
|
(if (null? maxs) |
|
0 |
|
(apply max maxs)))))) |
|
(values 'any 'any))))) |
|
0 0)) |
|
((#\;) |
|
(if end-group |
|
(loop (cdr chars) 'literal '() |
|
(cons (cons min-count max-count) conditions) |
|
end-group |
|
0 0) |
|
(throw &syntax-error 'unexpected-semicolon))) |
|
((#\]) |
|
(if end-group |
|
(end-group (cdr chars) |
|
(reverse (cons (cons min-count max-count) |
|
conditions))) |
|
(throw &syntax-error 'unexpected-conditional-termination))) |
|
((#\{) (if (memq #\@ params) |
|
(values min-count 'any) |
|
(loop (drop-group (cdr chars) #\}) |
|
'literal '() |
|
conditions end-group |
|
(+ 1 min-count) (+ 1 max-count)))) |
|
((#\*) (if (memq #\@ params) |
|
(values 'any 'any) |
|
(loop (cdr chars) |
|
'literal '() |
|
conditions end-group |
|
(+ (or (previous-number params) 1) |
|
min-count) |
|
(+ (or (previous-number params) 1) |
|
max-count)))) |
|
((#\? #\k #\K) |
|
|
|
|
|
(values 'any 'any)) |
|
((#\^) |
|
(values min-count 'any)) |
|
((#\h #\H) |
|
(let ((argc (if (memq #\: params) 2 1))) |
|
(loop (cdr chars) 'literal '() |
|
conditions end-group |
|
(+ argc min-count) |
|
(+ argc max-count)))) |
|
((#\') |
|
(if (null? (cdr chars)) |
|
(throw &syntax-error 'unexpected-termination) |
|
(loop (cddr chars) 'tilde (cons (cadr chars) params) |
|
conditions end-group min-count max-count))) |
|
(else (loop (cdr chars) 'literal '() |
|
conditions end-group |
|
(+ 1 min-count) (+ 1 max-count))))) |
|
((literal) |
|
(case (car chars) |
|
((#\~) (loop (cdr chars) 'tilde '() |
|
conditions end-group |
|
min-count max-count)) |
|
(else (loop (cdr chars) 'literal '() |
|
conditions end-group |
|
min-count max-count)))) |
|
(else (error "computer bought the farm" state)))))) |
|
|
|
(define (proc-ref? exp proc special-name env) |
|
"Return #t when EXP designates procedure PROC in ENV. As a last |
|
resort, return #t when EXP refers to the global variable SPECIAL-NAME." |
|
|
|
(define special? |
|
(cut eq? <> special-name)) |
|
|
|
(match exp |
|
(($ <toplevel-ref> _ _ (? special?)) |
|
|
|
#t) |
|
(($ <toplevel-ref> _ _ name) |
|
(let ((var (module-variable env name))) |
|
(and var (variable-bound? var) |
|
(eq? (variable-ref var) proc)))) |
|
(($ <module-ref> _ _ (? special?)) |
|
#t) |
|
(($ <module-ref> _ module name public?) |
|
(let* ((mod (if public? |
|
(false-if-exception (resolve-interface module)) |
|
(resolve-module module #:ensure #f))) |
|
(var (and mod (module-variable mod name)))) |
|
(and var (variable-bound? var) (eq? (variable-ref var) proc)))) |
|
(($ <lexical-ref> _ (? special?)) |
|
#t) |
|
(_ #f))) |
|
|
|
(define gettext? (cut proc-ref? <> gettext 'G_ <>)) |
|
(define ngettext? (cut proc-ref? <> ngettext 'N_ <>)) |
|
|
|
(define (const-fmt x env) |
|
|
|
(match x |
|
(($ <const> _ (? string? exp)) |
|
exp) |
|
(($ <call> _ (? (cut gettext? <> env)) |
|
(($ <const> _ (? string? fmt)))) |
|
|
|
fmt) |
|
(($ <call> _ (? (cut ngettext? <> env)) |
|
(($ <const> _ (? string? fmt)) ($ <const> _ (? string?)) _ ..1)) |
|
|
|
|
|
|
|
|
|
fmt) |
|
(_ #f))) |
|
|
|
(define format-analysis |
|
|
|
(make-tree-analysis |
|
(lambda (x res env locs) |
|
|
|
(define (check-format-args args loc) |
|
(pmatch args |
|
((,port ,fmt . ,rest) |
|
(guard (const-fmt fmt env)) |
|
(if (and (const? port) |
|
(not (boolean? (const-exp port)))) |
|
(warning 'format loc 'wrong-port (const-exp port))) |
|
(let ((fmt (const-fmt fmt env)) |
|
(count (length rest))) |
|
(catch &syntax-error |
|
(lambda () |
|
(let-values (((min max) |
|
(format-string-argument-count fmt))) |
|
(and min max |
|
(or (and (or (eq? min 'any) (>= count min)) |
|
(or (eq? max 'any) (<= count max))) |
|
(warning 'format loc 'wrong-format-arg-count |
|
fmt min max count))))) |
|
(lambda (_ key) |
|
(warning 'format loc 'syntax-error key fmt))))) |
|
((,port ,fmt . ,rest) |
|
(if (and (const? port) |
|
(not (boolean? (const-exp port)))) |
|
(warning 'format loc 'wrong-port (const-exp port))) |
|
|
|
(match fmt |
|
(($ <const> loc* (? (negate string?) fmt)) |
|
(warning 'format (or loc* loc) 'wrong-format-string fmt)) |
|
|
|
|
|
|
|
(($ <lexical-ref> _ fmt) |
|
#t) |
|
((? (negate const?)) |
|
(warning 'format loc 'non-literal-format-string)))) |
|
(else |
|
(warning 'format loc 'wrong-num-args (length args))))) |
|
|
|
(define (check-simple-format-args args loc) |
|
|
|
|
|
|
|
(define allowed-chars |
|
'(#\A #\S #\a #\s #\~ #\%)) |
|
|
|
(define (format-chars fmt) |
|
(let loop ((chars (string->list fmt)) |
|
(result '())) |
|
(match chars |
|
(() |
|
(reverse result)) |
|
((#\~ opt rest ...) |
|
(loop rest (cons opt result))) |
|
((_ rest ...) |
|
(loop rest result))))) |
|
|
|
(match args |
|
((port ($ <const> _ (? string? fmt)) _ ...) |
|
(let ((opts (format-chars fmt))) |
|
(or (every (cut memq <> allowed-chars) opts) |
|
(begin |
|
(warning 'format loc 'simple-format fmt |
|
(find (negate (cut memq <> allowed-chars)) opts)) |
|
#f)))) |
|
((port (= (cut const-fmt <> env) (? string? fmt)) args ...) |
|
(check-simple-format-args `(,port ,(make-const loc fmt) ,args) loc)) |
|
(_ #t))) |
|
|
|
(define (resolve-toplevel name) |
|
(and (module? env) |
|
(false-if-exception (module-ref env name)))) |
|
|
|
(match x |
|
(($ <call> src ($ <toplevel-ref> _ _ name) args) |
|
(let ((proc (resolve-toplevel name))) |
|
(if (or (and (eq? proc (@ (guile) simple-format)) |
|
(check-simple-format-args args |
|
(or src (find pair? locs)))) |
|
(eq? proc (@ (ice-9 format) format))) |
|
(check-format-args args (or src (find pair? locs)))))) |
|
(($ <call> src ($ <module-ref> _ '(ice-9 format) 'format) args) |
|
(check-format-args args (or src (find pair? locs)))) |
|
(($ <call> src ($ <module-ref> _ '(guile) |
|
(or 'format 'simple-format)) |
|
args) |
|
(and (check-simple-format-args args |
|
(or src (find pair? locs))) |
|
(check-format-args args (or src (find pair? locs))))) |
|
(_ #t)) |
|
#t) |
|
|
|
(lambda (x _ env locs) |
|
|
|
#t) |
|
|
|
(lambda (_ env) |
|
|
|
#t) |
|
|
|
#t)) |
|
|
|
(begin-deprecated |
|
(define-syntax unbound-variable-analysis |
|
(identifier-syntax |
|
(begin |
|
(issue-deprecation-warning |
|
"`unbound-variable-analysis' is deprecated. " |
|
"Use `make-use-before-definition-analysis' instead.") |
|
(make-use-before-definition-analysis |
|
#:enabled-warnings '(unbound-variable))))) |
|
(define-syntax macro-use-before-definition-analysis |
|
(identifier-syntax |
|
(begin |
|
(issue-deprecation-warning |
|
"`macro-use-before-definition-analysis' is deprecated. " |
|
"Use `make-use-before-definition-analysis' instead.") |
|
(make-use-before-definition-analysis |
|
#:enabled-warnings '(macro-use-before-definition))))) |
|
(export unbound-variable-analysis |
|
macro-use-before-definition-analysis)) |
|
|
|
(define-syntax-rule (define-analysis make-analysis |
|
#:level level #:kind kind #:analysis analysis) |
|
(define* (make-analysis #:key (warning-level 0) (enabled-warnings '())) |
|
(and (or (<= level warning-level) |
|
(memq 'kind enabled-warnings)) |
|
analysis))) |
|
|
|
(define-analysis make-unused-variable-analysis |
|
#:level 3 #:kind unused-variable #:analysis unused-variable-analysis) |
|
(define-analysis make-unused-toplevel-analysis |
|
#:level 2 #:kind unused-toplevel #:analysis unused-toplevel-analysis) |
|
(define-analysis make-unused-module-analysis |
|
#:level 2 #:kind unused-module #:analysis unused-module-analysis) |
|
(define-analysis make-shadowed-toplevel-analysis |
|
#:level 2 #:kind shadowed-toplevel #:analysis shadowed-toplevel-analysis) |
|
(define-analysis make-arity-analysis |
|
#:level 1 #:kind arity-mismatch #:analysis arity-analysis) |
|
(define-analysis make-format-analysis |
|
#:level 1 #:kind format #:analysis format-analysis) |
|
|
|
(define (make-analyzer warning-level warnings) |
|
(define-syntax compute-analyses |
|
(syntax-rules () |
|
((_) '()) |
|
((_ make-analysis . make-analysis*) |
|
(let ((tail (compute-analyses . make-analysis*))) |
|
(match (make-analysis #:warning-level warning-level |
|
#:enabled-warnings warnings) |
|
(#f tail) |
|
(analysis (cons analysis tail))))))) |
|
(let ((analyses (compute-analyses make-unused-variable-analysis |
|
make-unused-toplevel-analysis |
|
make-unused-module-analysis |
|
make-shadowed-toplevel-analysis |
|
make-arity-analysis |
|
make-format-analysis |
|
make-use-before-definition-analysis))) |
|
(lambda (exp env) |
|
(analyze-tree analyses exp env)))) |
|
|