compiler.tree.propagation: implementing missing case in branch constraints

db4
Slava Pestov 2009-11-12 17:24:11 -06:00
parent 0b4de37b63
commit 7afea4c0ea
2 changed files with 25 additions and 0 deletions

View File

@ -130,6 +130,22 @@ M: #phi propagate-before ( #phi -- )
swap t-->
]
}
{
{ { t f } { t } }
[
first =t
condition-value get =t /\
swap f-->
]
}
{
{ { t } { t f } }
[
second =t
condition-value get =f /\
swap f-->
]
}
{
{ { t f } { } }
[

View File

@ -224,6 +224,14 @@ IN: compiler.tree.propagation.tests
[ t ] [ [ over [ drop f ] when [ "A" throw ] unless ] final-classes first false-class? ] unit-test
[ V{ fixnum } ] [
[
[ { fixnum } declare ] [ drop f ] if
dup [ dup 13 eq? [ t ] [ f ] if ] [ t ] if
[ "Oops" throw ] when
] final-classes
] unit-test
[ V{ fixnum } ] [
[
>fixnum
@ -925,3 +933,4 @@ M: tuple-with-read-only-slot clone
! Could be bignum not integer but who cares
[ V{ integer } ] [ [ 10 >bignum bitand ] final-classes ] unit-test