Skip to content

Instantly share code, notes, and snippets.

@llibra
Created July 30, 2013 16:31
Show Gist options
  • Save llibra/6114554 to your computer and use it in GitHub Desktop.
Save llibra/6114554 to your computer and use it in GitHub Desktop.
SBCL 1.1.10変更点作業用

機能強化

  • ASDFが3.0.2にアップデートされました。

最適化

  • x86系でスタックフレームがより効率的に格納されるようになりました optimization: stack frames are packed more efficiently on x86oids, which ought to reduce the frequency of Methuselahn conservative references (it certainly helps with gc.impure.lisp / BUG-936304 on x86).
  • x86とx86-64で、整数の optimization: on x86 and x86-64, integer negation forms like (- x) are now recognized in modular arithmetic contexts, and compile to native negate, rather than going through bignums only to keep the low bits.

バグ修正

  • 特定の整数型に下限あるいは上限がないとき、潜在的に合同算術なフォームのコンパイルで型エラーを起こしていたのが直りました。 bug fix: Compiling potential modularic arithmetic forms does not cause type errors when some integer types lack lower or upper bounds. (#1199127)
  • bug fix: Non-trivial modular arithmetic forms are always cut to the right bitwidth before being used in a non-modular context. (#1199428)
  • win32で、ひとつの関数にある複数のcatch/unwindブロックが、スタックに正しい順番で割り当てられるようになりました。 bug fix: Multiple catch/unwind blocks in a single function are now allocated in the right stack order on win32. (#1072739)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment