Merge branch 'master' of git://factorcode.org/git/factor
commit
2ee95694e5
|
@ -12,7 +12,7 @@ IN: inverse
|
||||||
ERROR: fail ;
|
ERROR: fail ;
|
||||||
M: fail summary drop "Matching failed" ;
|
M: fail summary drop "Matching failed" ;
|
||||||
|
|
||||||
: assure ( ? -- ) [ fail ] unless ;
|
: assure ( ? -- ) [ fail ] unless ; inline
|
||||||
|
|
||||||
: =/fail ( obj1 obj2 -- ) = assure ;
|
: =/fail ( obj1 obj2 -- ) = assure ;
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Daniel Ehrenberg
|
Slava Pestov
|
|
@ -1 +0,0 @@
|
||||||
Packed homogeneous tuple arrays
|
|
|
@ -1 +0,0 @@
|
||||||
collections
|
|
|
@ -1,13 +0,0 @@
|
||||||
USING: help.syntax help.markup splitting kernel sequences ;
|
|
||||||
IN: tuple-arrays
|
|
||||||
|
|
||||||
HELP: tuple-array
|
|
||||||
{ $description "The class of packed homogeneous tuple arrays. They are created with " { $link <tuple-array> } ". All elements are of the same tuple class. Mutations done to an element are not copied back to the packed array unless it is explicitly written back. To convert a sequence to a tuple array, use the word " { $link >tuple-array } "." } ;
|
|
||||||
|
|
||||||
HELP: <tuple-array>
|
|
||||||
{ $values { "class" "a tuple class" } { "length" "a non-negative integer" } { "tuple-array" tuple-array } }
|
|
||||||
{ $description "Creates an instance of the " { $link <tuple-array> } " class with the given length and containing the given tuple class." } ;
|
|
||||||
|
|
||||||
HELP: >tuple-array
|
|
||||||
{ $values { "seq" sequence } { "tuple-array" tuple-array } }
|
|
||||||
{ $description "Converts a sequence into a homogeneous unboxed tuple array of the type indicated by the first element." } ;
|
|
|
@ -5,17 +5,21 @@ IN: tuple-arrays.tests
|
||||||
SYMBOL: mat
|
SYMBOL: mat
|
||||||
TUPLE: foo bar ;
|
TUPLE: foo bar ;
|
||||||
C: <foo> foo
|
C: <foo> foo
|
||||||
[ 2 ] [ 2 foo <tuple-array> dup mat set length ] unit-test
|
TUPLE-ARRAY: foo
|
||||||
|
|
||||||
|
[ 2 ] [ 2 <foo-array> dup mat set length ] unit-test
|
||||||
[ T{ foo } ] [ mat get first ] unit-test
|
[ T{ foo } ] [ mat get first ] unit-test
|
||||||
[ T{ foo f 2 } ] [ T{ foo f 2 } 0 mat get [ set-nth ] keep first ] unit-test
|
[ T{ foo f 2 } ] [ T{ foo f 2 } 0 mat get [ set-nth ] keep first ] unit-test
|
||||||
[ t ] [ { T{ foo f 1 } T{ foo f 2 } } >tuple-array dup mat set tuple-array? ] unit-test
|
[ t ] [ { T{ foo f 1 } T{ foo f 2 } } >foo-array dup mat set foo-array? ] unit-test
|
||||||
[ T{ foo f 3 } t ]
|
[ T{ foo f 3 } t ]
|
||||||
[ mat get [ bar>> 2 + <foo> ] map [ first ] keep tuple-array? ] unit-test
|
[ mat get [ bar>> 2 + <foo> ] map [ first ] keep foo-array? ] unit-test
|
||||||
|
|
||||||
[ 2 ] [ 2 foo <tuple-array> dup mat set length ] unit-test
|
[ 2 ] [ 2 <foo-array> dup mat set length ] unit-test
|
||||||
[ T{ foo } ] [ mat get first ] unit-test
|
[ T{ foo } ] [ mat get first ] unit-test
|
||||||
[ T{ foo f 1 } ] [ T{ foo f 1 } 0 mat get [ set-nth ] keep first ] unit-test
|
[ T{ foo f 1 } ] [ T{ foo f 1 } 0 mat get [ set-nth ] keep first ] unit-test
|
||||||
|
|
||||||
TUPLE: baz { bing integer } bong ;
|
TUPLE: baz { bing integer } bong ;
|
||||||
[ 0 ] [ 1 baz <tuple-array> first bing>> ] unit-test
|
TUPLE-ARRAY: baz
|
||||||
[ f ] [ 1 baz <tuple-array> first bong>> ] unit-test
|
|
||||||
|
[ 0 ] [ 1 <baz-array> first bing>> ] unit-test
|
||||||
|
[ f ] [ 1 <baz-array> first bong>> ] unit-test
|
||||||
|
|
|
@ -1,34 +1,68 @@
|
||||||
! Copyright (C) 2007 Daniel Ehrenberg.
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: splitting grouping classes.tuple classes math kernel
|
USING: accessors arrays combinators.smart fry functors grouping
|
||||||
sequences arrays accessors ;
|
kernel macros sequences sequences.private stack-checker
|
||||||
|
parser ;
|
||||||
|
FROM: inverse => undo ;
|
||||||
IN: tuple-arrays
|
IN: tuple-arrays
|
||||||
|
|
||||||
TUPLE: tuple-array { seq read-only } { class read-only } ;
|
<PRIVATE
|
||||||
|
|
||||||
: <tuple-array> ( length class -- tuple-array )
|
MACRO: infer-in ( class -- quot ) infer in>> '[ _ ] ;
|
||||||
[
|
|
||||||
new tuple>array 1 tail
|
|
||||||
[ <repetition> concat ] [ length ] bi <sliced-groups>
|
|
||||||
] [ ] bi tuple-array boa ;
|
|
||||||
|
|
||||||
M: tuple-array nth
|
: smart-tuple>array ( tuple class -- array )
|
||||||
[ seq>> nth ] [ class>> ] bi prefix >tuple ;
|
'[ [ _ boa ] undo ] output>array ; inline
|
||||||
|
|
||||||
M: tuple-array set-nth ( elt n seq -- )
|
: smart-array>tuple ( array class -- tuple )
|
||||||
[ tuple>array 1 tail ] 2dip seq>> set-nth ;
|
'[ _ boa ] input<sequence ; inline
|
||||||
|
|
||||||
M: tuple-array new-sequence
|
: tuple-arity ( class -- quot ) '[ _ boa ] infer-in ; inline
|
||||||
class>> <tuple-array> ;
|
|
||||||
|
|
||||||
: >tuple-array ( seq -- tuple-array )
|
: tuple-prototype ( class -- array )
|
||||||
|
[ new ] [ smart-tuple>array ] bi ; inline
|
||||||
|
|
||||||
|
PRIVATE>
|
||||||
|
|
||||||
|
FUNCTOR: define-tuple-array ( CLASS -- )
|
||||||
|
|
||||||
|
CLASS IS ${CLASS}
|
||||||
|
|
||||||
|
CLASS-array DEFINES-CLASS ${CLASS}-array
|
||||||
|
CLASS-array? IS ${CLASS-array}?
|
||||||
|
|
||||||
|
<CLASS-array> DEFINES <${CLASS}-array>
|
||||||
|
>CLASS-array DEFINES >${CLASS}-array
|
||||||
|
|
||||||
|
WHERE
|
||||||
|
|
||||||
|
TUPLE: CLASS-array { seq sliced-groups read-only } ;
|
||||||
|
|
||||||
|
: <CLASS-array> ( length -- tuple-array )
|
||||||
|
CLASS tuple-prototype <repetition> concat
|
||||||
|
CLASS tuple-arity <sliced-groups>
|
||||||
|
CLASS-array boa ;
|
||||||
|
|
||||||
|
M: CLASS-array nth-unsafe
|
||||||
|
seq>> nth-unsafe CLASS smart-array>tuple ;
|
||||||
|
|
||||||
|
M: CLASS-array set-nth-unsafe
|
||||||
|
[ CLASS smart-tuple>array ] 2dip seq>> set-nth-unsafe ;
|
||||||
|
|
||||||
|
M: CLASS-array new-sequence
|
||||||
|
drop <CLASS-array> ;
|
||||||
|
|
||||||
|
: >CLASS-array ( seq -- tuple-array )
|
||||||
dup empty? [
|
dup empty? [
|
||||||
0 over first class <tuple-array> clone-like
|
0 <CLASS-array> clone-like
|
||||||
] unless ;
|
] unless ;
|
||||||
|
|
||||||
M: tuple-array like
|
M: CLASS-array like
|
||||||
drop dup tuple-array? [ >tuple-array ] unless ;
|
drop dup CLASS-array? [ >CLASS-array ] unless ;
|
||||||
|
|
||||||
M: tuple-array length seq>> length ;
|
M: CLASS-array length seq>> length ;
|
||||||
|
|
||||||
INSTANCE: tuple-array sequence
|
INSTANCE: CLASS-array sequence
|
||||||
|
|
||||||
|
;FUNCTOR
|
||||||
|
|
||||||
|
SYNTAX: TUPLE-ARRAY: scan-word define-tuple-array ;
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Slava Pestov
|
|
@ -0,0 +1,20 @@
|
||||||
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
|
USING: kernel math math.functions tuple-arrays accessors fry sequences
|
||||||
|
prettyprint ;
|
||||||
|
IN: benchmark.tuple-arrays
|
||||||
|
|
||||||
|
TUPLE: point { x float } { y float } { z float } ;
|
||||||
|
|
||||||
|
TUPLE-ARRAY: point
|
||||||
|
|
||||||
|
: tuple-array-benchmark ( -- )
|
||||||
|
100 [
|
||||||
|
drop 5000 <point-array> [
|
||||||
|
[ 1+ ] change-x
|
||||||
|
[ 1- ] change-y
|
||||||
|
[ 1+ 2 / ] change-z
|
||||||
|
] map [ z>> ] sigma
|
||||||
|
] sigma . ;
|
||||||
|
|
||||||
|
MAIN: tuple-array-benchmark
|
16
vm/code_gc.c
16
vm/code_gc.c
|
@ -22,13 +22,13 @@ void add_to_free_list(F_HEAP *heap, F_FREE_BLOCK *block)
|
||||||
if(block->block.size < FREE_LIST_COUNT * BLOCK_SIZE_INCREMENT)
|
if(block->block.size < FREE_LIST_COUNT * BLOCK_SIZE_INCREMENT)
|
||||||
{
|
{
|
||||||
int index = block->block.size / BLOCK_SIZE_INCREMENT;
|
int index = block->block.size / BLOCK_SIZE_INCREMENT;
|
||||||
block->next_free = heap->free.small[index];
|
block->next_free = heap->free.small_blocks[index];
|
||||||
heap->free.small[index] = block;
|
heap->free.small_blocks[index] = block;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
block->next_free = heap->free.large;
|
block->next_free = heap->free.large_blocks;
|
||||||
heap->free.large = block;
|
heap->free.large_blocks = block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,11 +101,11 @@ F_FREE_BLOCK *find_free_block(F_HEAP *heap, CELL size)
|
||||||
while(attempt < FREE_LIST_COUNT * BLOCK_SIZE_INCREMENT)
|
while(attempt < FREE_LIST_COUNT * BLOCK_SIZE_INCREMENT)
|
||||||
{
|
{
|
||||||
int index = attempt / BLOCK_SIZE_INCREMENT;
|
int index = attempt / BLOCK_SIZE_INCREMENT;
|
||||||
F_FREE_BLOCK *block = heap->free.small[index];
|
F_FREE_BLOCK *block = heap->free.small_blocks[index];
|
||||||
if(block)
|
if(block)
|
||||||
{
|
{
|
||||||
assert_free_block(block);
|
assert_free_block(block);
|
||||||
heap->free.small[index] = block->next_free;
|
heap->free.small_blocks[index] = block->next_free;
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ F_FREE_BLOCK *find_free_block(F_HEAP *heap, CELL size)
|
||||||
}
|
}
|
||||||
|
|
||||||
F_FREE_BLOCK *prev = NULL;
|
F_FREE_BLOCK *prev = NULL;
|
||||||
F_FREE_BLOCK *block = heap->free.large;
|
F_FREE_BLOCK *block = heap->free.large_blocks;
|
||||||
|
|
||||||
while(block)
|
while(block)
|
||||||
{
|
{
|
||||||
|
@ -123,7 +123,7 @@ F_FREE_BLOCK *find_free_block(F_HEAP *heap, CELL size)
|
||||||
if(prev)
|
if(prev)
|
||||||
prev->next_free = block->next_free;
|
prev->next_free = block->next_free;
|
||||||
else
|
else
|
||||||
heap->free.large = block->next_free;
|
heap->free.large_blocks = block->next_free;
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
#define BLOCK_SIZE_INCREMENT 32
|
#define BLOCK_SIZE_INCREMENT 32
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
F_FREE_BLOCK *small[FREE_LIST_COUNT];
|
F_FREE_BLOCK *small_blocks[FREE_LIST_COUNT];
|
||||||
F_FREE_BLOCK *large;
|
F_FREE_BLOCK *large_blocks;
|
||||||
} F_HEAP_FREE_LIST;
|
} F_HEAP_FREE_LIST;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in New Issue