diff options
author | Andy Wingo <wingo@pobox.com> | 2019-08-16 09:08:43 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2019-08-18 22:27:12 +0200 |
commit | 79a40cf717e62f45232979d1952f748ca42f8e8f (patch) | |
tree | d315f7a4796d7061aa48870ea01b72b878ea527c /test-suite/tests/tree-il.test | |
parent | 4bb5834d754aac50ba3288b232ea49f22cf21d0e (diff) | |
download | guile-79a40cf717e62f45232979d1952f748ca42f8e8f.tar.gz |
Add "mod" field to tree-il toplevel ref, set, define
Add "mod" field to <toplevel-ref>, <toplevel-set>, and
<toplevel-define>, indicating the expander's idea of what the current
module is when a toplevel variable is accessed or created. This will
help in later optimizations.
* libguile/expand.c (TOPLEVEL_REF, TOPLEVEL_SET, TOPLEVEL_DEFINE)
(expand, expand_define, expand_set_x, convert_assignment):
* libguile/expand.h (SCM_EXPANDED_TOPLEVEL_REF_FIELD_NAMES):
(SCM_MAKE_EXPANDED_TOPLEVEL_REF, SCM_EXPANDED_TOPLEVEL_SET_FIELD_NAMES):
(SCM_MAKE_EXPANDED_TOPLEVEL_SET, SCM_EXPANDED_TOPLEVEL_DEFINE_FIELD_NAMES):
(SCM_MAKE_EXPANDED_TOPLEVEL_DEFINE):
* module/ice-9/compile-psyntax.scm (translate-literal-syntax-objects):
* module/ice-9/psyntax-pp.scm:
* module/ice-9/psyntax.scm:
* module/language/tree-il.scm:
* module/language/tree-il.scm (parse-tree-il, make-tree-il-folder):
(pre-post-order):
* module/language/tree-il/analyze.scm (goops-toplevel-definition):
(macro-use-before-definition-analysis, proc-ref?, format-analysis):
* module/language/tree-il/compile-cps.scm (convert):
* module/language/tree-il/debug.scm (verify-tree-il):
* module/language/tree-il/effects.scm (make-effects-analyzer):
* module/language/tree-il/fix-letrec.scm (free-variables):
* module/language/tree-il/peval.scm (peval):
* test-suite/tests/tree-il.test: Adapt uses.
Diffstat (limited to 'test-suite/tests/tree-il.test')
-rw-r--r-- | test-suite/tests/tree-il.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/tests/tree-il.test b/test-suite/tests/tree-il.test index bba2f6fe7..46729ef88 100644 --- a/test-suite/tests/tree-il.test +++ b/test-suite/tests/tree-il.test @@ -1,7 +1,7 @@ ;;;; tree-il.test --- test suite for compiling tree-il -*- scheme -*- ;;;; Andy Wingo <wingo@pobox.com> --- May 2009 ;;;; -;;;; Copyright (C) 2009-2014, 2018 Free Software Foundation, Inc. +;;;; Copyright (C) 2009-2014,2018-2019 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -188,11 +188,11 @@ x)) (and (= result 12) (equal? (map strip-source (list-head (reverse ups) 3)) - (list (make-toplevel-ref #f '+) + (list (make-toplevel-ref #f #f '+) (make-lexical-ref #f 'x 'x1) (make-lexical-ref #f 'y 'y1))) (equal? (map strip-source (reverse (list-head downs 3))) - (list (make-toplevel-ref #f '+) + (list (make-toplevel-ref #f #f '+) (make-lexical-ref #f 'x 'x1) (make-lexical-ref #f 'y 'y1))))))) |