[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch master updated (118f516 -> 7486806)
From: |
Andy Wingo |
Subject: |
[Guile-commits] branch master updated (118f516 -> 7486806) |
Date: |
Fri, 5 Jan 2018 09:25:23 -0500 (EST) |
wingo pushed a change to branch master
in repository guile.
from 118f516 $primcall always continues to $kargs
new 16db934 Add (system base optimize) module
new 51fd595 Disable resolve-primitives pass below -O2
new e4e02d8 Prevent LICM of memory accesses guarded by effect-free
predicates
new 3e271f1 Allow peeling loops with bailouts
new 6fdbd3b Instruction explosion for vector-{length,ref,set!}
new a821042 Allow peval to gnaw on string->symbol, symbol->string
new 7486806 Improve compilation of make-vector without init
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
am/bootstrap.am | 1 +
module/Makefile.am | 1 +
module/language/cps/licm.scm | 2 +-
module/language/cps/optimize.scm | 36 +++++------
module/language/cps/peel-loops.scm | 71 +++++++++++++++++----
module/language/tree-il/compile-cps.scm | 110 +++++++++++++++++++++++++++++++-
module/language/tree-il/optimize.scm | 48 ++++++++++----
module/language/tree-il/primitives.scm | 16 ++++-
module/scripts/compile.scm | 26 ++------
module/srfi/srfi-43.scm | 14 ++--
module/system/base/optimize.scm | 43 +++++++++++++
11 files changed, 294 insertions(+), 74 deletions(-)
create mode 100644 module/system/base/optimize.scm
- [Guile-commits] branch master updated (118f516 -> 7486806),
Andy Wingo <=
- [Guile-commits] 03/07: Prevent LICM of memory accesses guarded by effect-free predicates, Andy Wingo, 2018/01/05
- [Guile-commits] 06/07: Allow peval to gnaw on string->symbol, symbol->string, Andy Wingo, 2018/01/05
- [Guile-commits] 04/07: Allow peeling loops with bailouts, Andy Wingo, 2018/01/05
- [Guile-commits] 02/07: Disable resolve-primitives pass below -O2, Andy Wingo, 2018/01/05
- [Guile-commits] 05/07: Instruction explosion for vector-{length, ref, set!}, Andy Wingo, 2018/01/05
- [Guile-commits] 01/07: Add (system base optimize) module, Andy Wingo, 2018/01/05
- [Guile-commits] 07/07: Improve compilation of make-vector without init, Andy Wingo, 2018/01/05