Add 2/4/8le>, 2/4/8be> -- 30% faster on the 8-byte versions, slightly less faster on the others.

db4
Doug Coleman 2011-10-12 09:45:03 -07:00
parent 1783b3b72e
commit 1df7a40984
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1 @@
Doug Coleman

View File

@ -0,0 +1,13 @@
! Copyright (C) 2011 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: tools.test io.binary.fast ;
IN: io.binary.fast.tests
[ HEX: 0102 ] [ B{ 01 02 } 2be> ] unit-test
[ HEX: 01020304 ] [ B{ 01 02 03 04 } 4be> ] unit-test
[ HEX: 0102030405060708 ] [ B{ 01 02 03 04 05 06 07 08 } 8be> ] unit-test
[ HEX: 0102 ] [ B{ 02 01 } 2le> ] unit-test
[ HEX: 01020304 ] [ B{ 04 03 02 01 } 4le> ] unit-test
[ HEX: 0102030405060708 ] [ B{ 08 07 06 05 04 03 02 01 } 8le> ] unit-test

View File

@ -0,0 +1,42 @@
! Copyright (C) 2011 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: combinators combinators.smart fry kernel macros math
math.ranges sequences sequences.generalizations io.binary
locals ;
IN: io.binary.fast
ERROR: bad-length bytes n ;
: check-length ( bytes n -- bytes n )
2dup [ length ] dip > [ bad-length ] when ; inline
<<
: be-range ( n -- range )
1 - 8 * 0 -8 <range> ; inline
: le-range ( n -- range )
1 - 8 * 0 swap 8 <range> ; inline
: reassemble-bytes ( range -- quot )
[ dup 0 = [ drop [ ] ] [ '[ _ shift ] ] if ] map
'[ [ _ spread ] [ bitor ] reduce-outputs ] ; inline
MACRO: reassemble-be ( n -- quot ) be-range reassemble-bytes ;
MACRO: reassemble-le ( n -- quot ) le-range reassemble-bytes ;
>>
:: n-be> ( bytes n -- x )
bytes n check-length drop n firstn-unsafe n reassemble-be ; inline
:: n-le> ( bytes n -- x )
bytes n check-length drop n firstn-unsafe n reassemble-le ; inline
: 2be> ( bytes -- x ) 2 n-be> ;
: 4be> ( bytes -- x ) 4 n-be> ;
: 8be> ( bytes -- x ) 8 n-be> ;
: 2le> ( bytes -- x ) 2 n-le> ;
: 4le> ( bytes -- x ) 4 n-le> ;
: 8le> ( bytes -- x ) 8 n-le> ;