Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions release_notes/release_notes.stex
Original file line number Diff line number Diff line change
Expand Up @@ -2993,6 +2993,17 @@ in fasl files does not generally make sense.
%-----------------------------------------------------------------------------
\section{Bug Fixes}\label{section:bugfixes}

\subsection{Repair allocation in \scheme{logtest} (10.4.1)}

In Version 10.4.0, the \scheme{logtest} procedure could allocate incorrectly when given a
mixture of fixnum and bignum arguments. The problem has been fixed by adding a missing
\scheme{__alloc} annotation on the internal implementation.

\subsection{Repair \scheme{__alloc} mode for ppc32 (10.4.1)}

In Version 10.4.0 on ppc32, an \scheme{__atomic __alloc} foreign-procedure annotation was
not handled correctly. The problem has been fixed by migrating the end-of-allocation
pointer between a register and the thread context during an allocating foreign call.

\subsection{Declare \scheme{Spopcount} in scheme.h (10.4.0)}

Expand Down
3 changes: 3 additions & 0 deletions s/cpnanopass.ss
Original file line number Diff line number Diff line change
Expand Up @@ -4718,6 +4718,9 @@
(or (meta-cond
[(real-register? '%ap) (eq? reg %ap)]
[else #f])
(meta-cond
[(real-register? '%eap) (eq? reg %eap)]
[else #f])
(meta-cond
[(real-register? '%trap) (eq? reg %trap)]
[else #f])))))
Expand Down
2 changes: 1 addition & 1 deletion s/prims.ss
Original file line number Diff line number Diff line change
Expand Up @@ -2416,7 +2416,7 @@
scheme-object))

(define $logtest
(foreign-procedure __atomic "(cs)logtest"
(foreign-procedure __atomic __alloc "(cs)logtest"
(scheme-object scheme-object)
scheme-object))

Expand Down
Loading