guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch wip-inlinable-exports updated (ad0ddf5 -> 163e1f5


From: Andy Wingo
Subject: [Guile-commits] branch wip-inlinable-exports updated (ad0ddf5 -> 163e1f5)
Date: Thu, 22 Apr 2021 02:05:36 -0400 (EDT)

wingo pushed a change to branch wip-inlinable-exports
in repository guile.

 discard ad0ddf5  Implement cross-module inlining
 discard 538242e  Add support for recording inlinable module exports
 discard 2935748  Add pass to resolve free toplevel references in declarative 
modules
 discard 19a84d3  Letrectify links module defs with uses
 discard 6cb49d1  Mark some elisp runtime modules as non-declarative
 discard 6c9f5a5  Optimize letrec* binding order in fix-letrec
     add bdb07f8  Update gnulib to a3a946f670718d0dee5a7425ad5ac0a29fb46ea1
     add 3db293a  Document write-line.
     add 855f394  ice-9 ftw: Use 'absolute-file-name?' in 'nftw'.
     add 6069fa5  Compile fix for x86_64-MinGW.
     add fafe845  Optimize letrec* binding order in fix-letrec
     add 58ce5fa  Mark some elisp runtime modules as non-declarative
     add 8aacaad  Allow $kargs as entry of $kfun
     add 86e86ec  New pass: elide-arity-checks
     new afca5fb  Letrectify links module defs with uses
     new 8aadf7c  Add pass to resolve free toplevel references in declarative 
modules
     new 292f6a5  Add support for recording inlinable module exports
     new 163e1f5  Implement cross-module inlining

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ad0ddf5)
            \
             N -- N -- N   refs/heads/wip-inlinable-exports (163e1f5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 am/bootstrap.am                            |   1 +
 build-aux/config.rpath                     | 124 +++++++-------
 build-aux/gitlog-to-changelog              |   5 +-
 doc/ref/api-io.texi                        |  11 ++
 lib/Makefile.am                            |  21 ++-
 lib/canonicalize-lgpl.c                    |   7 +-
 lib/cdefs.h                                |  16 +-
 lib/dynarray.h                             | 255 ++++++++++++++++++++++++++++-
 lib/free.c                                 |  16 +-
 lib/intprops.h                             |  18 +-
 lib/lc-charset-dispatch.c                  |   6 +-
 lib/libc-config.h                          |   6 +-
 lib/link.c                                 |   4 -
 lib/malloc.c                               |  16 +-
 lib/malloc/dynarray-skeleton.c             |  33 ++--
 lib/malloc/dynarray_at_failure.c           |   4 +
 lib/malloc/dynarray_emplace_enlarge.c      |   4 +
 lib/malloc/dynarray_finalize.c             |   4 +
 lib/malloc/dynarray_resize.c               |   4 +
 lib/malloc/dynarray_resize_clear.c         |   4 +
 lib/malloca.h                              |   1 +
 lib/math.in.h                              |   2 +-
 lib/mbrtowc-impl-utf8.h                    |   2 +-
 lib/mbtowc-lock.h                          |  12 +-
 lib/mempcpy.c                              |   5 +
 lib/putenv.c                               |  10 +-
 lib/rawmemchr.c                            |   5 +
 lib/realloc.c                              |  85 ++++++++++
 lib/regcomp.c                              |   8 +-
 lib/regex_internal.c                       |   1 +
 lib/regex_internal.h                       |  15 +-
 lib/regexec.c                              |  89 +++++-----
 lib/rename.c                               |   2 -
 lib/scratch_buffer.h                       |  93 +++++++++++
 lib/stdalign.in.h                          |  13 +-
 lib/stddef.in.h                            |  11 +-
 lib/stdlib.in.h                            | 117 ++++++++++++-
 lib/striconveh.c                           |  47 +-----
 lib/time.in.h                              |  42 ++++-
 lib/vasnprintf.c                           |  25 +--
 lib/xalloc-oversized.h                     |  24 +--
 libguile/posix-w32.h                       |   6 +-
 libguile/rdelim.c                          |   2 +-
 m4/canonicalize.m4                         |  31 +++-
 m4/free.m4                                 |   7 +-
 m4/gnulib-common.m4                        |   4 +-
 m4/gnulib-comp.m4                          |  42 +++--
 m4/host-cpu-c-abi.m4                       |   6 +-
 m4/lib-ld.m4                               |   4 +-
 m4/malloc.m4                               |   4 +-
 m4/printf.m4                               |  10 +-
 m4/realloc.m4                              |  76 +++++++++
 m4/setlocale_null.m4                       |   6 +-
 m4/stdalign.m4                             |   4 +-
 m4/stdlib_h.m4                             |  12 +-
 m4/threadlib.m4                            |   6 +-
 m4/visibility.m4                           |   3 +-
 maint.mk                                   |   6 +-
 module/Makefile.am                         |   1 +
 module/ice-9/ftw.scm                       |   5 +-
 module/language/cps.scm                    |  16 +-
 module/language/cps/compile-bytecode.scm   |  13 +-
 module/language/cps/contification.scm      |  11 +-
 module/language/cps/cse.scm                |   9 +-
 module/language/cps/dce.scm                |  12 +-
 module/language/cps/elide-arity-checks.scm | 107 ++++++++++++
 module/language/cps/optimize.scm           |   4 +-
 module/language/cps/simplify.scm           |   4 +-
 module/language/cps/slot-allocation.scm    |  64 ++++----
 module/language/cps/types.scm              |  11 +-
 module/system/base/optimize.scm            |   1 +
 module/system/vm/assembler.scm             |  15 ++
 72 files changed, 1305 insertions(+), 365 deletions(-)
 create mode 100644 lib/realloc.c
 create mode 100644 m4/realloc.m4
 create mode 100644 module/language/cps/elide-arity-checks.scm



reply via email to

[Prev in Thread] Current Thread [Next in Thread]