guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch wip-exception-truncate updated (7fe78c3 -> a3b182


From: Daniel Llorens
Subject: [Guile-commits] branch wip-exception-truncate updated (7fe78c3 -> a3b1828)
Date: Fri, 8 May 2020 08:38:08 -0400 (EDT)

lloda pushed a change to branch wip-exception-truncate
in repository guile.

 discard 7fe78c3  Provide a hook for the exception printer
 discard 64c30e4  Note on modifying literal vectors
     add d7fea13  bitvector-set-all-bits! / bitvector-clear-all-bits! replace 
bitvector-fill!
     add f897efa  bitvector-flip-all-bits! replaces bit-invert!
     add d3d7696  doc: Fix typo.
     add 1fbe89f  'finalization_thread_proc' sets errno before calling 'perror'.
     add bfd38b8  bitvector-count-bits replaces bit-count*
     add b517a91  Deprecate useless C bitvector interface
     add 8861af3  Prefer C-like interfaces for 
scm_c_bitvector_{set,clear}_bits_x
     add 6071836  Deprecate scm_bitvector, scm_make_bitvector, scm_bitvector_p
     add 3d96c87  Remove unused analyze-lexicals function
     add d6b6dac  Add intrinsics for a baseline compiler
     add 167350d  Ensure <prompt> handler is values handler
     add 3e90196  Remove unused (language tree-il canonicalize)
     add 564f700  Export emit-shuffle-down for baseline compiler
     add 121ab14  Add baseline compiler
     add f0a9e53  Debugging names in baseline compiler; emit/immediate? fixes
     add 6b2d56c  Avoid shuffle-down for tail calls
     add cfdaf35  Fix baseline compilation of conditionals
     add 7a1b7bc  Fix baseline compilation of let-values and prompt
     add 728de16  Fix prompt compilation
     new 24bbeda  Note on modifying literal vectors
     new a3b1828  Provide a hook for the exception printer

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   (7fe78c3)
            \
             N -- N -- N   refs/heads/wip-exception-truncate (a3b1828)

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 2 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:
 NEWS                                         |   28 +-
 am/bootstrap.am                              |    2 +-
 doc/ref/api-data.texi                        |   90 +-
 doc/ref/tour.texi                            |    2 +-
 doc/ref/vm.texi                              |   39 +
 libguile/bitvectors.c                        |  398 ++++----
 libguile/bitvectors.h                        |   19 +-
 libguile/deprecated.c                        |  201 +++-
 libguile/deprecated.h                        |    7 +
 libguile/finalizers.c                        |    3 +-
 libguile/intrinsics.c                        |   69 +-
 libguile/intrinsics.h                        |   25 +-
 libguile/jit.c                               |   52 +
 libguile/read.c                              |    4 +-
 libguile/vm-engine.c                         |   60 +-
 module/Makefile.am                           |    2 +-
 module/ice-9/sandbox.scm                     |    7 +-
 module/language/tree-il/analyze.scm          |  482 +--------
 module/language/tree-il/canonicalize.scm     |   82 --
 module/language/tree-il/compile-bytecode.scm | 1364 ++++++++++++++++++++++++++
 module/language/tree-il/compile-cps.scm      |   26 -
 module/language/tree-il/primitives.scm       |   32 +-
 module/system/vm/assembler.scm               |   51 +
 module/system/vm/frame.scm                   |    8 +-
 test-suite/tests/bitvectors.test             |   17 +-
 test-suite/tests/peval.test                  |   22 +-
 26 files changed, 2178 insertions(+), 914 deletions(-)
 delete mode 100644 module/language/tree-il/canonicalize.scm
 create mode 100644 module/language/tree-il/compile-bytecode.scm



reply via email to

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