factor/library/test/compiler/optimizer.factor

196 lines
4.2 KiB
Factor

IN: temporary
USING: assembler compiler compiler-backend generic inference
kernel kernel-internals lists math optimizer prettyprint
sequences strings test vectors words ;
: kill-1
[ 1 2 3 ] [ + ] over drop drop ; compiled
[ [ 1 2 3 ] ] [ kill-1 ] unit-test
: kill-2
[ + ] [ 1 2 3 ] over drop nip ; compiled
[ [ 1 2 3 ] ] [ kill-2 ] unit-test
: kill-3
[ + ] dup over 3drop ;
[ ] [ kill-3 ] unit-test
: kill-4
[ 1 2 3 ] [ + ] [ - ] pick >r 2drop r> ; compiled
[ [ 1 2 3 ] [ 1 2 3 ] ] [ kill-4 ] unit-test
: kill-5
[ + ] [ - ] [ 1 2 3 ] pick pick 2drop >r 2drop r> ; compiled
[ [ 1 2 3 ] ] [ kill-5 ] unit-test
: kill-6
[ 1 2 3 ] [ 4 5 6 ] [ + ] pick >r drop r> ; compiled
[ [ 1 2 3 ] [ 4 5 6 ] [ 1 2 3 ] ] [ kill-6 ] unit-test
: kill-set*
dataflow dup solve-recursion dup split-node
kill-set [ literal-value ] map ;
: foo 1 2 3 ;
[ { } ] [ \ foo word-def dataflow kill-set ] unit-test
[ { [ 1 ] [ 2 ] } ] [ [ [ 1 ] [ 2 ] ifte ] kill-set* ] unit-test
[ { [ 1 ] [ 2 ] } ] [ [ [ 1 ] [ 2 ] ifte ] kill-set* ] unit-test
: literal-kill-test-1 4 compiled-offset cell 2 * - ; compiled
[ 4 ] [ literal-kill-test-1 drop ] unit-test
: literal-kill-test-2 3 compiled-offset cell 2 * - ; compiled
[ 3 ] [ literal-kill-test-2 drop ] unit-test
: literal-kill-test-3 10 3 /mod drop ; compiled
[ 3 ] [ literal-kill-test-3 ] unit-test
[ { [ 3 ] [ dup ] 3 } ] [ [ [ 3 ] [ dup ] ifte drop ] kill-set* ] unit-test
: literal-kill-test-4
5 swap [ 3 ] [ dup ] ifte 2drop ; compiled
[ ] [ t literal-kill-test-4 ] unit-test
[ ] [ f literal-kill-test-4 ] unit-test
[ { 5 [ 3 ] [ dup ] 3 } ] [ \ literal-kill-test-4 word-def kill-set* ] unit-test
: literal-kill-test-5
5 swap [ 5 ] [ dup ] ifte 2drop ; compiled
[ ] [ t literal-kill-test-5 ] unit-test
[ ] [ f literal-kill-test-5 ] unit-test
[ { 5 [ 5 ] [ dup ] 5 } ] [ \ literal-kill-test-5 word-def kill-set* ] unit-test
: literal-kill-test-6
5 swap [ dup ] [ dup ] ifte 2drop ; compiled
[ ] [ t literal-kill-test-6 ] unit-test
[ ] [ f literal-kill-test-6 ] unit-test
[ { 5 [ dup ] [ dup ] } ] [ \ literal-kill-test-6 word-def kill-set* ] unit-test
: literal-kill-test-7
[ 1 2 3 ] >r + r> drop ; compiled
[ 4 ] [ 2 2 literal-kill-test-7 ] unit-test
! Test method inlining
[ string ] [
\ string
[ repeated integer string mirror array reversed sbuf
slice vector diagonal general-list ]
min-class
] unit-test
[ f ] [
\ fixnum
[ fixnum integer letter ]
min-class
] unit-test
[ fixnum ] [
\ fixnum
[ fixnum integer object ]
min-class
] unit-test
[ integer ] [
\ fixnum
[ integer float object ]
min-class
] unit-test
[ object ] [
\ word
[ integer float object ]
min-class
] unit-test
GENERIC: xyz
M: cons xyz xyz ;
[ ] [ \ xyz compile ] unit-test
! Test predicate inlining
: pred-test-1
dup cons? [
dup general-list? [ "general-list" ] [ "nope" ] ifte
] [
"not a cons"
] ifte ; compiled
[ [[ 1 2 ]] "general-list" ] [ [[ 1 2 ]] pred-test-1 ] unit-test
: pred-test-2
dup fixnum? [
dup integer? [ "integer" ] [ "nope" ] ifte
] [
"not a fixnum"
] ifte ; compiled
[ 1 "integer" ] [ 1 pred-test-2 ] unit-test
TUPLE: pred-test ;
: pred-test-3
dup tuple? [
dup pred-test? [ "pred-test" ] [ "nope" ] ifte
] [
"not a tuple"
] ifte ; compiled
[ << pred-test >> "pred-test" ] [ << pred-test >> pred-test-3 ] unit-test
: pred-test-4
dup pred-test? [
dup tuple? [ "pred-test" ] [ "nope" ] ifte
] [
"not a tuple"
] ifte ; compiled
[ << pred-test >> "pred-test" ] [ << pred-test >> pred-test-4 ] unit-test
: inline-test
"nom" = ; compiled
[ t ] [ "nom" inline-test ] unit-test
[ f ] [ "shayin" inline-test ] unit-test
[ f ] [ 3 inline-test ] unit-test
: fixnum-declarations >fixnum 24 shift 1234 bitxor ; compiled
[ ] [ 1000000 fixnum-declarations . ] unit-test
! regression
: literal-not-branch 0 not [ ] [ ] ifte ; compiled
[ ] [ literal-not-branch ] unit-test
! regression
: bad-kill-1 [ 3 f ] [ dup bad-kill-1 ] ifte ; inline
: bad-kill-2 bad-kill-1 drop ; compiled
[ 3 ] [ t bad-kill-2 ] unit-test
! regression
: bleh 3 ;
: blah over cons? [ bleh >r 2cdr r> ] [ 2drop f f f ] ifte ; compiled
[ f ] [ [ 1 2 3 ] [ 1 3 2 ] blah drop 2car = ] unit-test