aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-04 05:01:21 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-04 05:01:21 -0400
commit1092185c843d77b5535d44956c1db1aa484d4b74 (patch)
treeb145a4ba2775c66a3796a7ca9fb98121da1b59a3 /compile.c
parent85f1210b1a0177c68d63984024f0c461173fdd92 (diff)
Improve codegen by making test() even more concise
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/compile.c b/compile.c
index 9b6aabcc..cf7f7e72 100644
--- a/compile.c
+++ b/compile.c
@@ -356,9 +356,9 @@ CORD compile_statement(env_t *env, ast_t *ast)
}
return CORD_asprintf(
"%r;\n"
- "test((%r = %r, &%r), %r, %r, %ld, %ld);\n",
+ "test((%r = %r), %r, %r, %ld, %ld);\n",
compile_declaration(t, var),
- var, val_code, var,
+ var, val_code,
compile_type_info(env, get_type(env, decl->value)),
CORD_quoted(output),
(int64_t)(test->expr->start - test->expr->file->text),
@@ -382,9 +382,8 @@ CORD compile_statement(env_t *env, ast_t *ast)
code_err(assign->values->ast, "You cannot assign a %T value to a %T operand", rhs_t, lhs_t);
}
return CORD_asprintf(
- "test((%r, &%r), %r, %r, %ld, %ld);",
+ "test((%r), %r, %r, %ld, %ld);",
compile_assignment(env, assign->targets->ast, value),
- compile(env, assign->targets->ast),
compile_type_info(env, lhs_t),
CORD_quoted(test->output),
(int64_t)(test->expr->start - test->expr->file->text),
@@ -395,6 +394,7 @@ CORD compile_statement(env_t *env, ast_t *ast)
code_err(ast, "Sorry, but doctesting with '=' is not supported for multi-assignments");
CORD code = "test(({ // Assignment\n";
+
int64_t i = 1;
for (ast_list_t *target = assign->targets, *value = assign->values; target && value; target = target->next, value = value->next) {
type_t *target_type = get_type(env, target->ast);
@@ -416,7 +416,7 @@ CORD compile_statement(env_t *env, ast_t *ast)
for (ast_list_t *target = assign->targets; target; target = target->next)
code = CORD_all(code, compile_assignment(env, target->ast, CORD_asprintf("$%ld", i++)), ";\n");
- CORD_appendf(&code, "&$1; }), %r, %r, %ld, %ld);",
+ CORD_appendf(&code, "$1; }), %r, %r, %ld, %ld);",
compile_type_info(env, get_type(env, assign->targets->ast)),
CORD_quoted(test->output),
(int64_t)(test->expr->start - test->expr->file->text),
@@ -424,25 +424,25 @@ CORD compile_statement(env_t *env, ast_t *ast)
return code;
}
} else if (test->expr->tag == UpdateAssign) {
+ type_t *lhs_t = get_type(env, Match(test->expr, UpdateAssign)->lhs);
return CORD_asprintf(
- "test(({ %r; &%r; }), %r, %r, %ld, %ld);",
+ "test(({%r %r;}), %r, %r, %ld, %ld);",
compile_statement(env, test->expr),
compile_lvalue(env, Match(test->expr, UpdateAssign)->lhs),
- compile_type_info(env, get_type(env, Match(test->expr, UpdateAssign)->lhs)),
+ compile_type_info(env, lhs_t),
CORD_quoted(test->output),
(int64_t)(test->expr->start - test->expr->file->text),
(int64_t)(test->expr->end - test->expr->file->text));
} else if (expr_t->tag == VoidType || expr_t->tag == AbortType || expr_t->tag == ReturnType) {
return CORD_asprintf(
- "test(({ %r; NULL; }), NULL, NULL, %ld, %ld);",
+ "test(({%r NULL;}), NULL, NULL, %ld, %ld);",
compile_statement(env, test->expr),
(int64_t)(test->expr->start - test->expr->file->text),
(int64_t)(test->expr->end - test->expr->file->text));
} else {
return CORD_asprintf(
"test(%r, %r, %r, %ld, %ld);",
- test->expr->tag == Var ? CORD_all("&", compile(env, test->expr))
- : CORD_all("(", compile_type(expr_t), "[1]){", compile(env, test->expr), "}"),
+ compile(env, test->expr),
compile_type_info(env, expr_t),
CORD_quoted(output),
(int64_t)(test->expr->start - test->expr->file->text),