@@ -601,7 +601,7 @@ static void jl_compilation_sig(
601
601
for (i = 0 ; i < np ; i ++ ) {
602
602
jl_value_t * elt = jl_tparam (tt , i );
603
603
jl_value_t * decl_i = jl_nth_slot_type (decl , i );
604
- size_t i_arg = (i <= nargs ? i : nargs );
604
+ size_t i_arg = (i < nargs - 1 ? i : nargs - 1 );
605
605
606
606
if (jl_is_kind (decl_i )) {
607
607
// if we can prove the match was against the kind (not a Type)
@@ -792,35 +792,35 @@ JL_DLLEXPORT int jl_isa_compileable_sig(
792
792
if (!jl_is_datatype (type ) || jl_has_free_typevars ((jl_value_t * )type ))
793
793
return 0 ;
794
794
795
+ size_t i , np = jl_nparams (type );
796
+ size_t nargs = definition -> nargs ; // == jl_field_count(jl_unwrap_unionall(decl));
797
+ if (np == 0 )
798
+ return nargs == 0 ;
799
+ if (jl_is_vararg_type (jl_tparam (type , np - 1 ))) {
800
+ if (!definition -> isva || np <= nargs )
801
+ return 0 ;
802
+ }
803
+ else if (definition -> isva ? np != nargs : np < nargs ) {
804
+ return 0 ;
805
+ }
806
+
795
807
if (definition -> generator ) {
796
808
// staged functions aren't optimized
797
809
// so assume the caller was intelligent about calling us
798
810
return type -> isdispatchtuple ;
799
811
}
800
812
801
- size_t i , np = jl_nparams (type );
802
- size_t nargs = definition -> nargs ; // == jl_field_count(jl_unwrap_unionall(decl));
803
- if (definition -> isva ? np <= nargs : np != nargs )
804
- return 0 ;
805
813
for (i = 0 ; i < np ; i ++ ) {
806
814
jl_value_t * elt = jl_tparam (type , i );
807
815
jl_value_t * decl_i = jl_nth_slot_type ((jl_value_t * )decl , i );
808
- size_t i_arg = (i <= nargs ? i : nargs );
816
+ size_t i_arg = (i < nargs - 1 ? i : nargs - 1 );
809
817
810
818
if (jl_is_vararg_type (elt )) { // varargs are always considered compilable
811
819
if (!jl_has_free_typevars (elt ))
812
820
continue ;
813
821
return 0 ;
814
822
}
815
823
816
- if (jl_is_kind (elt )) {
817
- // kind slots always get guard entries (checking for subtypes of Type)
818
- if (decl_i == elt || jl_subtype ((jl_value_t * )jl_type_type , decl_i ))
819
- continue ;
820
- // TODO: other code paths that could reach here
821
- return 0 ;
822
- }
823
-
824
824
if (i_arg > 0 && i_arg <= sizeof (definition -> nospecialize ) * 8 &&
825
825
(definition -> nospecialize & (1 << (i_arg - 1 )))) {
826
826
if (decl_i == (jl_value_t * )jl_any_type ) {
@@ -836,6 +836,14 @@ JL_DLLEXPORT int jl_isa_compileable_sig(
836
836
// TODO: handle @nospecialize with other declared types
837
837
}
838
838
839
+ if (jl_is_kind (elt )) {
840
+ // kind slots always get guard entries (checking for subtypes of Type)
841
+ if (decl_i == elt || jl_subtype ((jl_value_t * )jl_type_type , decl_i ))
842
+ continue ;
843
+ // TODO: other code paths that could reach here
844
+ return 0 ;
845
+ }
846
+
839
847
if (jl_is_type_type (elt )) {
840
848
// if the declared type was not Any or Union{Type, ...},
841
849
// then the match must been with kind, such as UnionAll or DataType,
0 commit comments