diff --git a/basis/compiler/tree/propagation/known-words/known-words.factor b/basis/compiler/tree/propagation/known-words/known-words.factor index 351da4e2f8..7fb36c96fd 100644 --- a/basis/compiler/tree/propagation/known-words/known-words.factor +++ b/basis/compiler/tree/propagation/known-words/known-words.factor @@ -220,16 +220,6 @@ generic-comparison-ops [ 2bi and maybe-or-never ] "outputs" set-word-prop -\ both-fixnums? [ - node-input-infos first2 [ class>> ] bi@ { - { [ 2dup [ fixnum classes-intersect? not ] either? ] [ [ 2drop f ] ] } - { [ 2dup [ fixnum class<= ] both? ] [ [ 2drop t ] ] } - { [ dup fixnum class<= ] [ [ drop fixnum? ] ] } - { [ over fixnum class<= ] [ [ nip fixnum? ] ] } - [ f ] - } cond 2nip -] "custom-inlining" set-word-prop - { { >fixnum fixnum } { bignum>fixnum fixnum } diff --git a/basis/compiler/tree/propagation/transforms/transforms.factor b/basis/compiler/tree/propagation/transforms/transforms.factor index f8d43e37c4..3d2d7ac298 100644 --- a/basis/compiler/tree/propagation/transforms/transforms.factor +++ b/basis/compiler/tree/propagation/transforms/transforms.factor @@ -313,3 +313,14 @@ M\ set intersect [ intersect-quot ] 1 define-partial-eval [ depends-on-definition ] [ heap-size '[ _ ] ] bi ] [ drop f ] if ] 1 define-partial-eval + +! Eliminates a few redundant checks here and there +\ both-fixnums? [ + in-d>> first2 [ value-info class>> ] bi@ { + { [ 2dup [ fixnum classes-intersect? not ] either? ] [ [ 2drop f ] ] } + { [ 2dup [ fixnum class<= ] both? ] [ [ 2drop t ] ] } + { [ dup fixnum class<= ] [ [ drop fixnum? ] ] } + { [ over fixnum class<= ] [ [ nip fixnum? ] ] } + [ f ] + } cond 2nip +] "custom-inlining" set-word-prop