Skip to content

Commit a726763

Browse files
authored
Merge pull request #27898 from JuliaLang/jn/codegen-fixes
some fixes for compilation
2 parents 179a311 + 01d8f80 commit a726763

File tree

4 files changed

+31
-21
lines changed

4 files changed

+31
-21
lines changed

base/generator.jl

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ Generator(::Type{T}, I1, I2, Is...) where {T} = Generator(a->T(a...), zip(I1, I2
4141

4242
function iterate(g::Generator, s...)
4343
@_inline_meta
44-
y = iterate(g.iter, s...)::Union{Tuple{Any, Any}, Nothing}
44+
y = iterate(g.iter, s...)
4545
y === nothing && return nothing
46-
g.f(y[1]), y[2]
46+
y = y::Tuple{Any, Any} # try to give inference some idea of what to expect about the behavior of the next line
47+
return (g.f(y[1]), y[2])
4748
end
4849

4950
length(g::Generator) = length(g.iter)

src/codegen.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -4209,8 +4209,7 @@ static void emit_cfunc_invalidate(
42094209
break;
42104210
}
42114211
case jl_returninfo_t::SRet: {
4212-
unsigned sret_nbytes = jl_datatype_size(astrt);
4213-
emit_memcpy(ctx, &*gf_thunk->arg_begin(), nullptr, gf_ret, nullptr, sret_nbytes, jl_alignment(sret_nbytes));
4212+
emit_memcpy(ctx, &*gf_thunk->arg_begin(), nullptr, gf_ret, nullptr, jl_datatype_size(astrt), julia_alignment(astrt, 0));
42144213
ctx.builder.CreateRetVoid();
42154214
break;
42164215
}

src/dump.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,9 @@ static void jl_serialize_value_(jl_serializer_state *s, jl_value_t *v, int as_li
710710
jl_serialize_value(s, jl_nothing);
711711
else
712712
jl_serialize_value(s, (jl_value_t*)m->ambig);
713-
write_int8(s->s, m->called);
713+
write_int32(s->s, m->called);
714714
write_int32(s->s, m->nargs);
715+
write_int32(s->s, m->nospecialize);
715716
write_int8(s->s, m->isva);
716717
write_int8(s->s, m->pure);
717718
jl_serialize_value(s, (jl_value_t*)m->module);
@@ -1563,7 +1564,7 @@ static jl_value_t *jl_deserialize_value_method(jl_serializer_state *s, jl_value_
15631564
jl_method_t *m =
15641565
(jl_method_t*)jl_gc_alloc(s->ptls, sizeof(jl_method_t),
15651566
jl_method_type);
1566-
memset(m, 0, sizeof(jl_method_type));
1567+
memset(m, 0, sizeof(jl_method_t));
15671568
uintptr_t pos = backref_list.len;
15681569
if (usetable)
15691570
arraylist_push(&backref_list, m);
@@ -1585,8 +1586,9 @@ static jl_value_t *jl_deserialize_value_method(jl_serializer_state *s, jl_value_
15851586
m->min_world = jl_world_counter;
15861587
m->ambig = jl_deserialize_value(s, (jl_value_t**)&m->ambig);
15871588
jl_gc_wb(m, m->ambig);
1588-
m->called = read_int8(s->s);
1589+
m->called = read_int32(s->s);
15891590
m->nargs = read_int32(s->s);
1591+
m->nospecialize = read_int32(s->s);
15901592
m->isva = read_int8(s->s);
15911593
m->pure = read_int8(s->s);
15921594
m->module = (jl_module_t*)jl_deserialize_value(s, (jl_value_t**)&m->module);

src/gf.c

+22-14
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ static void jl_compilation_sig(
601601
for (i = 0; i < np; i++) {
602602
jl_value_t *elt = jl_tparam(tt, i);
603603
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);
605605

606606
if (jl_is_kind(decl_i)) {
607607
// if we can prove the match was against the kind (not a Type)
@@ -792,35 +792,35 @@ JL_DLLEXPORT int jl_isa_compileable_sig(
792792
if (!jl_is_datatype(type) || jl_has_free_typevars((jl_value_t*)type))
793793
return 0;
794794

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+
795807
if (definition->generator) {
796808
// staged functions aren't optimized
797809
// so assume the caller was intelligent about calling us
798810
return type->isdispatchtuple;
799811
}
800812

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;
805813
for (i = 0; i < np; i++) {
806814
jl_value_t *elt = jl_tparam(type, i);
807815
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);
809817

810818
if (jl_is_vararg_type(elt)) { // varargs are always considered compilable
811819
if (!jl_has_free_typevars(elt))
812820
continue;
813821
return 0;
814822
}
815823

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-
824824
if (i_arg > 0 && i_arg <= sizeof(definition->nospecialize) * 8 &&
825825
(definition->nospecialize & (1 << (i_arg - 1)))) {
826826
if (decl_i == (jl_value_t*)jl_any_type) {
@@ -836,6 +836,14 @@ JL_DLLEXPORT int jl_isa_compileable_sig(
836836
// TODO: handle @nospecialize with other declared types
837837
}
838838

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+
839847
if (jl_is_type_type(elt)) {
840848
// if the declared type was not Any or Union{Type, ...},
841849
// then the match must been with kind, such as UnionAll or DataType,

0 commit comments

Comments
 (0)