fix struct-array of struct class; inline memory>struct so the compiler can optimize a little better

db4
Joe Groff 2009-08-26 19:20:20 -05:00
parent 9eb4ce2791
commit ad463795aa
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ M: struct equal?
: memory>struct ( ptr class -- struct )
over c-ptr? [ swap \ c-ptr bad-slot-value ] unless
tuple-layout <tuple> [ 2 set-slot ] keep ;
tuple-layout <tuple> [ 2 set-slot ] keep ; inline
: malloc-struct ( class -- struct )
[ heap-size malloc ] keep memory>struct ; inline

View File

@ -20,7 +20,7 @@ M: struct-array byte-length [ length>> ] [ element-size>> ] bi * ;
[ element-size>> * ] [ underlying>> ] bi <displaced-alien> ; inline
M: struct-array nth-unsafe
[ (nth-ptr) ] [ class>> struct-class? ] bi [ memory>struct ] when* ; inline
[ (nth-ptr) ] [ class>> dup struct-class? ] bi [ memory>struct ] [ drop ] if ; inline
M: struct-array set-nth-unsafe
[ (nth-ptr) swap ] [ element-size>> ] bi memcpy ;