Merge branch 'master' of git://factorcode.org/git/factor

db4
Joe Groff 2009-08-20 16:21:58 -05:00
commit 93c93a392b
7 changed files with 199 additions and 133 deletions

View File

@ -35,83 +35,87 @@ gc
: compile-unoptimized ( words -- ) : compile-unoptimized ( words -- )
[ optimized? not ] filter compile ; [ optimized? not ] filter compile ;
nl "debug-compiler" get [
"Compiling..." write flush
nl
"Compiling..." write flush
! Compile a set of words ahead of the full compile. ! Compile a set of words ahead of the full compile.
! This set of words was determined semi-empirically ! This set of words was determined semi-empirically
! using the profiler. It improves bootstrap time ! using the profiler. It improves bootstrap time
! significantly, because frequenly called words ! significantly, because frequenly called words
! which are also quick to compile are replaced by ! which are also quick to compile are replaced by
! compiled definitions as soon as possible. ! compiled definitions as soon as possible.
{ {
not ? not ?
2over roll -roll 2over roll -roll
array? hashtable? vector? array? hashtable? vector?
tuple? sbuf? tombstone? tuple? sbuf? tombstone?
curry? compose? callable? curry? compose? callable?
quotation? quotation?
curry compose uncurry curry compose uncurry
array-nth set-array-nth length>> array-nth set-array-nth length>>
wrap probe wrap probe
namestack* namestack*
layout-of layout-of
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
bitand bitor bitxor bitnot bitand bitor bitxor bitnot
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
+ 2/ < <= > >= shift + 2/ < <= > >= shift
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
new-sequence nth push pop last flip new-sequence nth push pop last flip
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
hashcode* = equal? assoc-stack (assoc-stack) get set hashcode* = equal? assoc-stack (assoc-stack) get set
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
memq? split harvest sift cut cut-slice start index clone memq? split harvest sift cut cut-slice start index clone
set-at reverse push-all class number>string string>number set-at reverse push-all class number>string string>number
like clone-like like clone-like
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
lines prefix suffix unclip new-assoc update lines prefix suffix unclip new-assoc update
word-prop set-word-prop 1array 2array 3array ?nth word-prop set-word-prop 1array 2array 3array ?nth
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
{ {
malloc calloc free memcpy malloc calloc free memcpy
} compile-unoptimized } compile-unoptimized
"." write flush "." write flush
vocabs [ words compile-unoptimized "." write flush ] each vocabs [ words compile-unoptimized "." write flush ] each
" done" print flush " done" print flush
] unless

View File

@ -4,7 +4,7 @@ USING: kernel kernel.private tools.test math math.partial-dispatch
prettyprint math.private accessors slots.private sequences prettyprint math.private accessors slots.private sequences
sequences.private strings sbufs compiler.tree.builder sequences.private strings sbufs compiler.tree.builder
compiler.tree.normalization compiler.tree.debugger alien.accessors compiler.tree.normalization compiler.tree.debugger alien.accessors
layouts combinators byte-arrays ; layouts combinators byte-arrays arrays ;
IN: compiler.tree.modular-arithmetic.tests IN: compiler.tree.modular-arithmetic.tests
: test-modular-arithmetic ( quot -- quot' ) : test-modular-arithmetic ( quot -- quot' )
@ -134,7 +134,7 @@ TUPLE: declared-fixnum { x fixnum } ;
] { mod fixnum-mod rem } inlined? ] { mod fixnum-mod rem } inlined?
] unit-test ] unit-test
[ [ >fixnum 255 fixnum-bitand ] ] [ [ >fixnum 255 >R R> fixnum-bitand ] ]
[ [ >integer 256 rem ] test-modular-arithmetic ] unit-test [ [ >integer 256 rem ] test-modular-arithmetic ] unit-test
[ t ] [ [ t ] [
@ -201,6 +201,21 @@ cell {
{ >fixnum } inlined? { >fixnum } inlined?
] unit-test ] unit-test
[ t ] [
[ >integer [ >fixnum ] [ >fixnum ] bi ]
{ >integer } inlined?
] unit-test
[ f ] [
[ >bignum [ >fixnum ] [ >fixnum ] bi ]
{ >fixnum } inlined?
] unit-test
[ t ] [
[ >bignum [ >fixnum ] [ >fixnum ] bi ]
{ >bignum } inlined?
] unit-test
[ f ] [ [ f ] [
[ [ { fixnum } declare 2 fixnum+ ] dip [ >fixnum 2 - ] [ ] if ] [ [ { fixnum } declare 2 fixnum+ ] dip [ >fixnum 2 - ] [ ] if ]
{ fixnum+ } inlined? { fixnum+ } inlined?
@ -257,4 +272,21 @@ cell {
[ f ] [ [ f ] [
[ [ >fixnum ] 2dip set-alien-unsigned-1 ] [ [ >fixnum ] 2dip set-alien-unsigned-1 ]
{ >fixnum } inlined? { >fixnum } inlined?
] unit-test
[ t ] [
[ { fixnum } declare 123 >bignum bitand >fixnum ]
{ >bignum fixnum>bignum bignum-bitand } inlined?
] unit-test
! Shifts
[ t ] [
[
[ 0 ] 2dip { array } declare [
hashcode* >fixnum swap [
[ -2 shift ] [ 5 shift ] bi
+ +
] keep bitxor >fixnum
] with each
] { + bignum+ fixnum-shift bitxor bignum-bitxor } inlined?
] unit-test ] unit-test

View File

@ -1,8 +1,8 @@
! Copyright (C) 2008, 2009 Slava Pestov, Daniel Ehrenberg. ! Copyright (C) 2008, 2009 Slava Pestov, Daniel Ehrenberg.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: math math.private math.partial-dispatch namespaces sequences USING: math math.intervals math.private math.partial-dispatch
sets accessors assocs words kernel memoize fry combinators namespaces sequences sets accessors assocs words kernel memoize fry
combinators.short-circuit layouts alien.accessors combinators combinators.short-circuit layouts alien.accessors
compiler.tree compiler.tree
compiler.tree.combinators compiler.tree.combinators
compiler.tree.propagation.info compiler.tree.propagation.info
@ -30,7 +30,7 @@ IN: compiler.tree.modular-arithmetic
] each-integer-derived-op ] each-integer-derived-op
] each ] each
{ bitand bitor bitxor bitnot >integer } { bitand bitor bitxor bitnot >integer >bignum fixnum>bignum }
[ t "modular-arithmetic" set-word-prop ] each [ t "modular-arithmetic" set-word-prop ] each
! Words that only use the low-order bits of their input. If the input ! Words that only use the low-order bits of their input. If the input
@ -71,16 +71,28 @@ M: #push compute-modular-candidates*
[ out-d>> first ] [ literal>> ] bi [ out-d>> first ] [ literal>> ] bi
real? [ [ modular-value ] [ fixnum-value ] bi ] [ drop ] if ; real? [ [ modular-value ] [ fixnum-value ] bi ] [ drop ] if ;
: small-shift? ( interval -- ? )
0 cell-bits tag-bits get - 1 - [a,b] interval-subset? ;
: modular-word? ( #call -- ? )
dup word>> { shift fixnum-shift bignum-shift } memq?
[ node-input-infos second interval>> small-shift? ]
[ word>> "modular-arithmetic" word-prop ]
if ;
: output-candidate ( #call -- )
out-d>> first [ modular-value ] [ fixnum-value ] bi ;
: low-order-word? ( #call -- ? )
word>> "low-order" word-prop ;
: input-candidiate ( #call -- )
in-d>> first modular-value ;
M: #call compute-modular-candidates* M: #call compute-modular-candidates*
{ {
{ { [ dup modular-word? ] [ output-candidate ] }
[ dup word>> "modular-arithmetic" word-prop ] { [ dup low-order-word? ] [ input-candidiate ] }
[ out-d>> first [ modular-value ] [ fixnum-value ] bi ]
}
{
[ dup word>> "low-order" word-prop ]
[ in-d>> first modular-value ]
}
[ drop ] [ drop ]
} cond ; } cond ;
@ -94,15 +106,13 @@ M: node compute-modular-candidates*
GENERIC: only-reads-low-order? ( node -- ? ) GENERIC: only-reads-low-order? ( node -- ? )
: output-modular? ( #call -- ? )
out-d>> first modular-values get key? ;
M: #call only-reads-low-order? M: #call only-reads-low-order?
{ {
[ word>> "low-order" word-prop ] [ low-order-word? ]
[ [ { [ modular-word? ] [ output-modular? ] } 1&& ]
{
[ word>> "modular-arithmetic" word-prop ]
[ out-d>> first modular-values get key? ]
} 1&&
]
} 1|| ; } 1|| ;
M: node only-reads-low-order? drop f ; M: node only-reads-low-order? drop f ;
@ -167,17 +177,25 @@ MEMO: fixnum-coercion ( flags -- nodes )
[ drop fixnum <class-info> ] change-at [ drop fixnum <class-info> ] change-at
] when ; ] when ;
: like->fixnum? ( #call -- ? )
word>> { >fixnum bignum>fixnum float>fixnum } memq? ;
: like->integer? ( #call -- ? )
word>> { >integer >bignum fixnum>bignum } memq? ;
M: #call optimize-modular-arithmetic* M: #call optimize-modular-arithmetic*
dup word>> { {
{ [ dup { >fixnum bignum>fixnum float>fixnum } memq? ] [ drop optimize->fixnum ] } { [ dup like->fixnum? ] [ optimize->fixnum ] }
{ [ dup \ >integer eq? ] [ drop optimize->integer ] } { [ dup like->integer? ] [ optimize->integer ] }
{ [ dup "modular-arithmetic" word-prop ] [ drop optimize-modular-op ] } { [ dup modular-word? ] [ optimize-modular-op ] }
{ [ dup "low-order" word-prop ] [ drop optimize-low-order-op ] } { [ dup low-order-word? ] [ optimize-low-order-op ] }
[ drop ] [ ]
} cond ; } cond ;
M: node optimize-modular-arithmetic* ; M: node optimize-modular-arithmetic* ;
: optimize-modular-arithmetic ( nodes -- nodes' ) : optimize-modular-arithmetic ( nodes -- nodes' )
dup compute-modular-candidates compute-modular-values dup compute-modular-candidates compute-modular-values
[ optimize-modular-arithmetic* ] map-nodes ; modular-values get assoc-empty? [
[ optimize-modular-arithmetic* ] map-nodes
] unless ;

View File

@ -82,6 +82,8 @@ IN: compiler.tree.propagation.tests
[ bignum ] [ [ { bignum bignum } declare bitxor ] final-math-class ] unit-test [ bignum ] [ [ { bignum bignum } declare bitxor ] final-math-class ] unit-test
[ bignum ] [ [ { integer } declare 123 >bignum bitand ] final-math-class ] unit-test
[ float ] [ [ { float float } declare mod ] final-math-class ] unit-test [ float ] [ [ { float float } declare mod ] final-math-class ] unit-test
[ V{ fixnum } ] [ [ 255 bitand ] final-classes ] unit-test [ V{ fixnum } ] [ [ 255 bitand ] final-classes ] unit-test

View File

@ -38,6 +38,12 @@ IN: compiler.tree.propagation.transforms
in-d>> rem-custom-inlining in-d>> rem-custom-inlining
] "custom-inlining" set-word-prop ] "custom-inlining" set-word-prop
: positive-fixnum? ( obj -- ? )
{ [ fixnum? ] [ 0 >= ] } 1&& ;
: simplify-bitand? ( value -- ? )
value-info literal>> positive-fixnum? ;
{ {
bitand-integer-integer bitand-integer-integer
bitand-integer-fixnum bitand-integer-fixnum
@ -45,10 +51,17 @@ IN: compiler.tree.propagation.transforms
bitand bitand
} [ } [
[ [
in-d>> second value-info >literal< [ {
0 most-positive-fixnum between? {
[ [ >fixnum ] bi@ fixnum-bitand ] f ? [ dup in-d>> first simplify-bitand? ]
] when [ drop [ >fixnum fixnum-bitand ] ]
}
{
[ dup in-d>> second simplify-bitand? ]
[ drop [ [ >fixnum ] dip fixnum-bitand ] ]
}
[ drop f ]
} cond
] "custom-inlining" set-word-prop ] "custom-inlining" set-word-prop
] each ] each

View File

@ -1,4 +1,4 @@
! Copyright (C) 2004, 2006 Slava Pestov. ! Copyright (C) 2004, 2009 Slava Pestov, Joe Groff.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel math math.private ; USING: kernel math math.private ;
IN: math.floats.private IN: math.floats.private
@ -28,3 +28,37 @@ M: float /i float/f >integer ; inline
M: float mod float-mod ; inline M: float mod float-mod ; inline
M: real abs dup 0 < [ neg ] when ; inline M: real abs dup 0 < [ neg ] when ; inline
M: float fp-special?
double>bits -52 shift HEX: 7ff [ bitand ] keep = ; inline
M: float fp-nan-payload
double>bits 52 2^ 1 - bitand ; inline
M: float fp-nan?
dup fp-special? [ fp-nan-payload zero? not ] [ drop f ] if ; inline
M: float fp-qnan?
dup fp-nan? [ fp-nan-payload 51 2^ bitand zero? not ] [ drop f ] if ; inline
M: float fp-snan?
dup fp-nan? [ fp-nan-payload 51 2^ bitand zero? ] [ drop f ] if ; inline
M: float fp-infinity?
dup fp-special? [ fp-nan-payload zero? ] [ drop f ] if ; inline
M: float next-float ( m -- n )
double>bits
dup -0.0 double>bits > [ 1 - bits>double ] [ ! negative non-zero
dup -0.0 double>bits = [ drop 0.0 ] [ ! negative zero
1 + bits>double ! positive
] if
] if ; inline
M: float prev-float ( m -- n )
double>bits
dup -0.0 double>bits >= [ 1 + bits>double ] [ ! negative
dup 0.0 double>bits = [ drop -0.0 ] [ ! positive zero
1 - bits>double ! positive non-zero
] if
] if ; inline

View File

@ -97,55 +97,18 @@ GENERIC: fp-snan? ( x -- ? )
GENERIC: fp-infinity? ( x -- ? ) GENERIC: fp-infinity? ( x -- ? )
GENERIC: fp-nan-payload ( x -- bits ) GENERIC: fp-nan-payload ( x -- bits )
M: object fp-special? M: object fp-special? drop f ; inline
drop f ; inline M: object fp-nan? drop f ; inline
M: object fp-nan? M: object fp-qnan? drop f ; inline
drop f ; inline M: object fp-snan? drop f ; inline
M: object fp-qnan? M: object fp-infinity? drop f ; inline
drop f ; inline M: object fp-nan-payload drop f ; inline
M: object fp-snan?
drop f ; inline
M: object fp-infinity?
drop f ; inline
M: object fp-nan-payload
drop f ; inline
M: float fp-special?
double>bits -52 shift HEX: 7ff [ bitand ] keep = ; inline
M: float fp-nan-payload
double>bits HEX: fffffffffffff bitand ; inline
M: float fp-nan?
dup fp-special? [ fp-nan-payload zero? not ] [ drop f ] if ; inline
M: float fp-qnan?
dup fp-nan? [ fp-nan-payload HEX: 8000000000000 bitand zero? not ] [ drop f ] if ; inline
M: float fp-snan?
dup fp-nan? [ fp-nan-payload HEX: 8000000000000 bitand zero? ] [ drop f ] if ; inline
M: float fp-infinity?
dup fp-special? [ fp-nan-payload zero? ] [ drop f ] if ; inline
: <fp-nan> ( payload -- nan ) : <fp-nan> ( payload -- nan )
HEX: 7ff0000000000000 bitor bits>double ; inline HEX: 7ff0000000000000 bitor bits>double ; inline
: next-float ( m -- n ) GENERIC: next-float ( m -- n )
double>bits GENERIC: prev-float ( m -- n )
dup -0.0 double>bits > [ 1 - bits>double ] [ ! negative non-zero
dup -0.0 double>bits = [ drop 0.0 ] [ ! negative zero
1 + bits>double ! positive
] if
] if ; inline
: prev-float ( m -- n )
double>bits
dup -0.0 double>bits >= [ 1 + bits>double ] [ ! negative
dup 0.0 double>bits = [ drop -0.0 ] [ ! positive zero
1 - bits>double ! positive non-zero
] if
] if ; inline
: next-power-of-2 ( m -- n ) : next-power-of-2 ( m -- n )
dup 2 <= [ drop 2 ] [ 1 - log2 1 + 2^ ] if ; inline dup 2 <= [ drop 2 ] [ 1 - log2 1 + 2^ ] if ; inline