Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix code generation failure with tuples in recover blocks #2642

Merged
merged 1 commit into from
Apr 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/libponyc/codegen/gencontrol.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,27 @@ LLVMValueRef gen_repeat(compile_t* c, ast_t* ast)
return GEN_NOTNEEDED;
}

LLVMValueRef gen_recover(compile_t* c, ast_t* ast)
{
ast_t* body = ast_childidx(ast, 1);
LLVMValueRef ret = gen_expr(c, body);

if(is_result_needed(ast))
{
deferred_reification_t* reify = c->frame->reify;

ast_t* type = deferred_reify(reify, ast_type(ast), c->opt);
compile_type_t* c_t = (compile_type_t*)reach_type(c->reach, type)->c_type;
ast_free_unattached(type);

type = deferred_reify(reify, ast_type(body), c->opt);
ret = gen_assign_cast(c, c_t->use_type, ret, type);
ast_free_unattached(type);
}

return ret;
}

LLVMValueRef gen_break(compile_t* c, ast_t* ast)
{
ast_t* body = ast_child(ast);
Expand Down
2 changes: 2 additions & 0 deletions src/libponyc/codegen/gencontrol.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ LLVMValueRef gen_while(compile_t* c, ast_t* ast);

LLVMValueRef gen_repeat(compile_t* c, ast_t* ast);

LLVMValueRef gen_recover(compile_t* c, ast_t* ast);

LLVMValueRef gen_break(compile_t* c, ast_t* ast);

LLVMValueRef gen_continue(compile_t* c, ast_t* ast);
Expand Down
2 changes: 1 addition & 1 deletion src/libponyc/codegen/genexpr.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ LLVMValueRef gen_expr(compile_t* c, ast_t* ast)
}

case TK_RECOVER:
ret = gen_expr(c, ast_childidx(ast, 1));
ret = gen_recover(c, ast);
break;

case TK_BREAK:
Expand Down
89 changes: 54 additions & 35 deletions src/libponyc/codegen/genfun.c
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ static bool genfun_allocator(compile_t* c, reach_type_t* t)
}

static bool genfun_forward(compile_t* c, reach_type_t* t,
reach_method_name_t* n, reach_method_t* m)
reach_method_name_t* n, reach_method_t* m)
{
compile_method_t* c_m = (compile_method_t*)m->c_method;
pony_assert(c_m->func != NULL);
Expand Down Expand Up @@ -761,6 +761,52 @@ static bool genfun_forward(compile_t* c, reach_type_t* t,
return true;
}

static bool genfun_method(compile_t* c, reach_type_t* t,
reach_method_name_t* n, reach_method_t* m)
{
if(m->intrinsic)
{
if(m->internal && (n->name == c->str__final))
{
if(!genfun_implicit_final(c, t, m))
return false;
}
} else if(m->forwarding) {
if(!genfun_forward(c, t, n, m))
return false;
} else {
switch(ast_id(m->fun->ast))
{
case TK_NEW:
if(t->underlying == TK_ACTOR)
{
if(!genfun_newbe(c, t, m))
return false;
} else {
if(!genfun_new(c, t, m))
return false;
}
break;

case TK_BE:
if(!genfun_be(c, t, m))
return false;
break;

case TK_FUN:
if(!genfun_fun(c, t, m))
return false;
break;

default:
pony_assert(0);
return false;
}
}

return true;
}

void genfun_param_attrs(compile_t* c, reach_type_t* t, reach_method_t* m,
LLVMValueRef fun)
{
Expand Down Expand Up @@ -900,44 +946,17 @@ bool genfun_method_bodies(compile_t* c, reach_type_t* t)

while((m = reach_mangled_next(&n->r_mangled, &j)) != NULL)
{
if(m->intrinsic)
if(!genfun_method(c, t, n, m))
{
if(m->internal && (n->name == c->str__final))
if(errors_get_count(c->opt->check.errors) == 0)
{
if(!genfun_implicit_final(c, t, m))
return false;
pony_assert(m->fun != NULL);
ast_error(c->opt->check.errors, m->fun->ast,
"internal failure: code generation failed for method %s",
m->full_name);
}
} else if(m->forwarding) {
if(!genfun_forward(c, t, n, m))
return false;
} else {
switch(ast_id(m->fun->ast))
{
case TK_NEW:
if(t->underlying == TK_ACTOR)
{
if(!genfun_newbe(c, t, m))
return false;
} else {
if(!genfun_new(c, t, m))
return false;
}
break;

case TK_BE:
if(!genfun_be(c, t, m))
return false;
break;

case TK_FUN:
if(!genfun_fun(c, t, m))
return false;
break;

default:
pony_assert(0);
return false;
}
return false;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/libponyc/reach/reach.c
Original file line number Diff line number Diff line change
Expand Up @@ -1433,6 +1433,7 @@ static void reachable_expr(reach_t* r, deferred_reification_t* reify,
case TK_WHILE:
case TK_REPEAT:
case TK_TRY:
case TK_RECOVER:
{
if(is_result_needed(ast) && !ast_checkflag(ast, AST_FLAG_JUMPS_AWAY))
{
Expand Down
22 changes: 21 additions & 1 deletion test/libponyc/codegen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ TEST_F(CodegenTest, ViewpointAdaptedFieldReach)

TEST_F(CodegenTest, StringSerialization)
{
// From issue 2245
// From issue #2245
const char* src =
"use \"serialise\"\n"

Expand Down Expand Up @@ -623,3 +623,23 @@ TEST_F(CodegenTest, DescTable)
ASSERT_EQ(type_id->getZExtValue(), i);
}
}


TEST_F(CodegenTest, RecoverCast)
{
// From issue #2639
const char* src =
"class A\n"
" new create() => None\n"

"actor Main\n"
" new create(env: Env) =>\n"
" let x: ((None, None) | (A iso, None)) =\n"
" if false then\n"
" (None, None)\n"
" else\n"
" recover (A, None) end\n"
" end";

TEST_COMPILE(src);
}