mescc: Tinycc support: foo[index]->bar for array bar.

* module/language/c99/compiler.mes (expr->accu*): foo[index]->bar for array bar.
* scaffold/tests/7e-struct-array-access.c: Test it.
* make.scm (add-scaffold-test): Build it.
This commit is contained in:
Jan Nieuwenhuizen 2017-08-04 21:45:29 +02:00
parent 50af730e00
commit 3f4cc96a7b
3 changed files with 107 additions and 10 deletions

View File

@ -163,7 +163,8 @@ exec ${GUILE-guile} --no-auto-compile -L . -L guile -C . -C guile -s "$0" ${1+"$
"7a-struct-char-array"
"7b-struct-int-array"
"7c-dynarray"
"7d-cast-char"))
"7d-cast-char"
"7e-struct-array-access"))
(add-target (group "check-scaffold-tests/7" #:dependencies (filter (target-prefix? "check-scaffold/tests/7") %targets)))

View File

@ -641,15 +641,15 @@
(info ((expr->accu* info) `(array-ref ,index (p-expr (ident ,array))))))
(append-text info (wrap-as (i386:mem+n->accu offset)))))
((i-sel (ident ,field) (p-expr (ident ,array)))
(let* ((type (ident->type info array))
((i-sel (ident ,field) (p-expr (ident ,struct)))
(let* ((type (ident->type info struct))
(offset (field-offset info type field))
(ptr (field-pointer info type field)))
(if (= ptr -1)
(append-text info (append ((ident-address->accu info) array)
(append-text info (append ((ident-address->accu info) struct)
(wrap-as (i386:mem->accu))
(wrap-as (i386:accu+value offset))))
(append-text info (append ((ident-address->accu info) array)
(append-text info (append ((ident-address->accu info) struct)
(wrap-as (i386:mem->accu))
(wrap-as (i386:mem+n->accu offset)))))))
@ -668,8 +668,11 @@
;;foo[index]->bar
((i-sel (ident ,field) (array-ref ,index ,array))
(let ((info ((expr->accu* info) o)))
(append-text info (wrap-as (i386:mem->accu)))))
(let* ((info ((expr->accu* info) o))
(type (p-expr->type info array))
(ptr (field-pointer info type field)))
(if (< ptr 0) info
(append-text info (wrap-as (i386:mem->accu))))))
((de-ref (p-expr (ident ,name)))
(let* ((type (ident->type info name))
@ -1218,9 +1221,10 @@
((i-sel (ident ,field) (array-ref ,index (p-expr (ident ,array))))
(let* ((type (ident->type info array))
(offset (field-offset info type field))
(info ((expr->accu* info) `(array-ref ,index (p-expr (ident ,array))))))
(append-text info (append (wrap-as (i386:mem->accu))
(wrap-as (i386:accu+value offset))))))
(info ((expr->accu* info) `(array-ref ,index (p-expr (ident ,array)))))
(ptr (field-pointer info type field)))
(append-text info (wrap-as (append (i386:mem->accu)
(i386:accu+value offset))))))
(_ (error "expr->accu*: unsupported: " o)))))

View File

@ -0,0 +1,92 @@
/* -*-comment-start: "//";comment-end:""-*-
* Mes --- Maxwell Equations of Software
* Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of Mes.
*
* Mes is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* Mes is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
#include "30-test.i"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct symbol {
int len;
char str[10];
//int len;
};
struct symbol *list[2];
struct symbol s0;
struct symbol s1;
struct symbol** plist;
char *
find0 ()
{
strcpy (s0.str, "foo");
strcpy (s1.str, "bar");
list[0] = &s0;
list[1] = &s1;
//return s0.str;
//struct symbol *s = &s0;
struct symbol *s = list[0];
return s->str;
}
char *
find1 ()
{
return list[1]->str;
}
char *
find2 ()
{
plist = malloc (8);
struct symbol *p0 = malloc (sizeof (struct symbol));
struct symbol *p1 = malloc (sizeof (struct symbol));
strcpy (p0->str, "pfoo");
strcpy (p1->str, "pbar");
plist[0] = p0;
plist[1] = p1;
int i = 3;
return plist[i - 2]->str;
}
int
test ()
{
char *s = find0 ();
eputs (s); eputs ("\n");
if (strcmp (s, "foo")) return 1;
if (strcmp (list[0]->str, "foo")) return 2;
s = find1 ();
eputs (s); eputs ("\n");
if (strcmp (s, "bar")) return 3;
if (strcmp (list[1]->str, "bar")) return 4;
s = find2 ();
eputs (s); eputs ("\n");
if (strcmp (s, "pbar")) return 5;
list[1]->len = 2;
if (list[1]->len != 2) return 6;
return 0;
}