racket/c
dybvig f7c414bda3 Various updates, mostly to the compiler, including a new lambda
commonizatio pass and support for specifying default record
equal and hash procedures:

- more staid and consistent Mf-cross main target
    Mf-cross
- cpletrec now replaces the incoming prelexes with new ones so
  that it doesn't have to alter the flags on the incoming ones, since
  the same expander output is passed through the compiler twice while
  compiling a file with macro definitions or libraries.  we were
  getting away without this just by luck.
    cpletrec.ss
- pure? and ivory? now return #t for a primref only if the prim is
  declared to be a proc, since some non-proc prims are mutable, e.g.,
  $active-threads and $collect-request-pending.
    cp0.ss
- $error-handling-mode? and $eol-style? are now properly declared to
  be procs rather than system state variables.
    primdata.ss
- the new pass $check-prelex-flags verifies that prelex referenced,
  multiply-referenced, and assigned flags are set when they
  should be.  (it doesn't, however, complain if a flag is set
  when it need not be.)  when the new system parameter
  $enable-check-prelex-flags is set, $check-prelex-flags is
  called after each major pass that produces Lsrc forms to verify
  that the flags are set correctly in the output of the pass.
  this parameter is unset by default but set when running the
  mats.
    cprep.ss, back.ss, compile.ss, primdata.ss,
    mats/Mf-base
- removed the unnecessary set of prelex referenced flag from the
  build-ref routines when we've just established that it is set.
    syntax.ss, compile.ss
- equivalent-expansion? now prints differences to the current output
  port to aid in debugging.
    mat.ss
- the nanopass that patches calls to library globals into calls to
  their local counterparts during whole-program optimization now
  creates new prelexes and sets the prelex referenced, multiply
  referenced, and assigned flags on the new prelexes rather than
  destructively setting flags on the incoming prelexes.  The
  only known problems this fixes are (1) the multiply referenced
  flag was not previously being set for cross-library calls when
  it should have been, resulting in overly aggressive inlining
  of library exports during whole-program optimization, and (2)
  the referenced flag could sometimes be set for library exports
  that aren't actually used in the final program, which could
  prevent some unreachable code from being eliminated.
    compile.ss
- added support for specifying default record-equal and
  record-hash procedures.
    primdata.ss, cmacros.ss, cpnanopass.ss, prims.ss, newhash.ss,
    gc.c,
    record.ms
- added missing call to relocate for subset-mode tc field, which
  wasn't burning us because the only valid non-false value, the
  symbol system, is in the static generation after the initial heap
  compaction.
    gc.c
- added a lambda-commonization pass that runs after the other
  source optimizations, particularly inlining, and a new parameter
  that controls how hard it works.  the value of commonization-level
  ranges from 0 through 9, with 0 disabling commonization and 9
  maximizing it.  The default value is 0 (disabled).  At present,
  for non-zero level n, the commonizer attempts to commonize
  lambda expressions consisting of 2^(10-n) or more nodes.
  commonization of one or more lambda expressions requires that
  they have identical structure down to the leaf nodes for quote
  expressions, references to unassigned variables, and primitives.
  So that various downstream optimizations aren't disabled, there
  are some additional restrictions, the most important of which
  being that call-position expressions must be identical.  The
  commonizer works by abstracting the code into a helper that
  takes the values of the differing leaf nodes as arguments.
  the name of the helper is formed by concatenating the names of
  the original procedures, separated by '&', and this is the name
  that will show up in a stack trace.  The source location will
  be that of one of the original procedures.  Profiling inhibits
  commonization, because commonization requires profile source
  locations to be identical.
    cpcommonize.ss (new), compile.ss, interpret.ss, cprep.ss,
    primdata.ss, s/Mf-base,
    mats/Mf-base
- cpletrec now always produces a letrec rather than a let for
  single immutable lambda bindings, even when not recursive, for
  consistent expand/optimize output whether the commonizer is
  run or not.
    cpletrec.ss,
    record.ms
- trans-make-ftype-pointer no longer generates a call to
  $verify-ftype-address if the address expression is a call to
  ftype-pointer-address.
    ftype.ss

original commit: b6a3dcc814b64faacc9310fec4a4531fb3f18dcd
2018-01-29 09:20:07 -05:00
..
alloc.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
arm32le.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
cs.ico initial upload of open-source release 2016-04-26 10:04:54 -04:00
expeditor.c - ifdef'd out include of xlocale.h for glibc, since the glibc 2017-10-13 16:59:16 -04:00
externs.h - renamed s_gettime => S_gettime to remain consistent with the 2017-10-11 16:35:24 -04:00
fasl.c add make-ephemeron-eq-hashtable, etc. 2017-07-06 16:27:23 -06:00
flushcache.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
foreign.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
gc-ocd.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
gc-oce.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
gc.c Various updates, mostly to the compiler, including a new lambda 2018-01-29 09:20:07 -05:00
gcwrapper.c check_dirty_ephemeron now puts ephemerons whose keys haven't yet 2017-05-29 20:21:01 -04:00
globals.h spelling 2017-12-04 09:35:31 +00:00
i3le.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
intern.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
io.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
itest.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
main.c fix comment about Sscheme_program 2017-12-28 10:54:03 -05:00
Makefile.a6nt - updated version to 9.5.1 2017-10-11 19:57:53 -04:00
Makefile.i3nt - updated version to 9.5.1 2017-10-11 19:57:53 -04:00
Makefile.ta6nt - updated version to 9.5.1 2017-10-11 19:57:53 -04:00
Makefile.ti3nt - updated version to 9.5.1 2017-10-11 19:57:53 -04:00
Mf-a6fb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-a6le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-a6nb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-a6nt added support for Microsoft Visual Studio 2017 on Windows 2017-08-11 13:10:37 -04:00
Mf-a6ob Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-a6osx Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-a6s2 Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-arm32le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-base changed copyright year to 2017 2017-04-06 11:41:33 -04:00
Mf-i3fb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-i3le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-i3nb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-i3nt support Windows build on Bash/WSL 2017-05-02 08:25:09 -06:00
Mf-i3ob Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-i3osx Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-i3qnx changed copyright year to 2017 2017-04-06 11:41:33 -04:00
Mf-i3s2 Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ppc32le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-ta6fb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ta6le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-ta6nb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ta6nt added support for Microsoft Visual Studio 2017 on Windows 2017-08-11 13:10:37 -04:00
Mf-ta6ob Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ta6osx Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ta6s2 Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ti3fb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ti3le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
Mf-ti3nb Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ti3nt support Windows build on Bash/WSL 2017-05-02 08:25:09 -06:00
Mf-ti3ob Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ti3osx Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-ti3s2 Disable warning for implicit fallthrough 2017-06-13 20:53:18 -04:00
Mf-tppc32le Merge branch 'master' into no-implicit-fallthrough 2017-06-20 19:02:16 -04:00
new-io.c added casts to c/new-io.c to eliminate compiler warnings in Windows 2017-06-27 12:35:35 -04:00
number.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
ppc32.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
ppc32le.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
prim.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
prim5.c add bytevector-compress and bytevector-decompress 2017-06-21 17:52:28 -06:00
print.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
scheme.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
scheme.exe.manifest - Cygwin is now used on Windows, updated mats, eliminated unused killme 2016-06-10 10:07:07 -04:00
scheme.rc - updated version to 9.5.1 2017-10-11 19:57:53 -04:00
schlib.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
schsig.c fixed typo in S_abnormal_exit 2017-06-27 12:26:22 -04:00
segment.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
segment.h changed copyright year to 2017 2017-04-06 11:41:33 -04:00
sort.h changed copyright year to 2017 2017-04-06 11:41:33 -04:00
statics.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
stats.c fix bug in date->time-utc caused by incorrect use of difftime in Windows 2017-12-29 16:48:30 -05:00
symbol.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00
system.h changed copyright year to 2017 2017-04-06 11:41:33 -04:00
thread.c - renamed s_gettime => S_gettime to remain consistent with the 2017-10-11 16:35:24 -04:00
thread.h changed copyright year to 2017 2017-04-06 11:41:33 -04:00
types.h add ephemerons 2017-05-24 09:38:24 -06:00
version.h fixes wrong type for iconv 2017-06-02 16:18:04 +02:00
vs.bat fix c/vs.bat to work on 32-bit Windows 2018-01-03 10:06:17 -05:00
windows.c changed copyright year to 2017 2017-04-06 11:41:33 -04:00