From 2df58e581846701b14d1bd6dc877a1e29a124665 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 25 Aug 2018 17:14:12 -0400 Subject: [PATCH] Staging 0.9.2 release --- _posts/2018-08-26-Released-Cyclone-Scheme-0.9.2.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 _posts/2018-08-26-Released-Cyclone-Scheme-0.9.2.md diff --git a/_posts/2018-08-26-Released-Cyclone-Scheme-0.9.2.md b/_posts/2018-08-26-Released-Cyclone-Scheme-0.9.2.md new file mode 100644 index 00000000..43fcd495 --- /dev/null +++ b/_posts/2018-08-26-Released-Cyclone-Scheme-0.9.2.md @@ -0,0 +1,12 @@ +--- +layout: post +title: Released Cyclone Scheme 0.9.2 +excerpt: This release includes various performance enhancements. +--- + +Features + +- During CPS optimization allow inlining of operations on global variables that are mutated in other top-level functions. +- Improved loop detection during CPS optimization phase. +- Allow optimizing-out of basic `if` expressions of the form `(if (pred? ...) #t #f)` into `(pred? ...)`. +- Perform slightly faster type checking for string, vector, and bytevector access functions.