2017-08-01 09:26:00 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-08-01 09:26:00 +00:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
2018-05-29 16:15:22 +00:00
|
|
|
#include <libmes.h>
|
2017-08-01 09:26:00 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
add (void *ptab, int *nb_ptr, void *data)
|
|
|
|
{
|
|
|
|
int nb, nb_alloc;
|
|
|
|
int **pp;
|
|
|
|
|
|
|
|
nb = *nb_ptr;
|
|
|
|
pp = *(void ***)ptab;
|
|
|
|
/* every power of two we double array size */
|
|
|
|
if ((nb & (nb - 1)) == 0) {
|
|
|
|
if (!nb)
|
|
|
|
nb_alloc = 1;
|
|
|
|
else
|
|
|
|
nb_alloc = nb * 2;
|
|
|
|
pp = realloc (pp, nb_alloc * sizeof(void *));
|
|
|
|
*(void***)ptab = pp;
|
|
|
|
}
|
|
|
|
pp[nb++] = data;
|
|
|
|
*nb_ptr = nb;
|
|
|
|
}
|
|
|
|
|
mescc: refactor expr->accu, expr->accu*, fixes nontrivial struct by value assign.
* module/language/c99/compiler.mes: (pke): New function.
(expr->number): Rename from p-expr->number. Update callers.
(decl->info, init-declr->pointer, struct-field): Several pointeryness fixes.
(expr->accu*, expr->accu): Remove special-casing for foo.bar,
foo->bar, foo[bar]. Fixes struct by value assign for non-trival
expressions.
(accu->ident, ident-address->accu, ident->accu):
(base->ident-address, ident->base): Remove.
* scaffold/tests/7k-for-each-elem.c (test): Test it.
* scaffold/tests/7c-dynarray.c (test): Test it.
* scaffold/tests/7m-struct-char-array-assign.c: Test it.
* make.scm (add-scaffold-test): Build it.
2017-11-11 12:45:53 +00:00
|
|
|
typedef struct file4 {
|
2017-08-01 09:26:00 +00:00
|
|
|
char name[4];
|
mescc: refactor expr->accu, expr->accu*, fixes nontrivial struct by value assign.
* module/language/c99/compiler.mes: (pke): New function.
(expr->number): Rename from p-expr->number. Update callers.
(decl->info, init-declr->pointer, struct-field): Several pointeryness fixes.
(expr->accu*, expr->accu): Remove special-casing for foo.bar,
foo->bar, foo[bar]. Fixes struct by value assign for non-trival
expressions.
(accu->ident, ident-address->accu, ident->accu):
(base->ident-address, ident->base): Remove.
* scaffold/tests/7k-for-each-elem.c (test): Test it.
* scaffold/tests/7c-dynarray.c (test): Test it.
* scaffold/tests/7m-struct-char-array-assign.c: Test it.
* make.scm (add-scaffold-test): Build it.
2017-11-11 12:45:53 +00:00
|
|
|
} file4_struct;
|
|
|
|
|
|
|
|
typedef struct file12 {
|
|
|
|
int foo;
|
|
|
|
int bar;
|
|
|
|
char name[4];
|
|
|
|
} file12_struct;
|
|
|
|
|
|
|
|
//#define file file4
|
|
|
|
#define file file12
|
2017-08-01 09:26:00 +00:00
|
|
|
|
|
|
|
struct state {
|
2017-08-05 10:39:36 +00:00
|
|
|
int bla;
|
2017-08-01 09:26:00 +00:00
|
|
|
char **paths;
|
|
|
|
int path_count;
|
|
|
|
struct file **files;
|
2017-08-05 10:39:36 +00:00
|
|
|
//file_struct **files;
|
2017-08-01 09:26:00 +00:00
|
|
|
int file_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct state g_s;
|
|
|
|
|
|
|
|
int
|
|
|
|
test ()
|
|
|
|
{
|
|
|
|
struct state *s = &g_s;
|
|
|
|
|
|
|
|
char* file_name = "file-name";
|
|
|
|
struct file *file;
|
|
|
|
|
|
|
|
file = malloc (sizeof (struct file) + strlen (file_name));
|
|
|
|
strcpy (file->name, file_name);
|
|
|
|
add (&s->files, &s->file_count, file);
|
|
|
|
|
|
|
|
char *path_name = "foo:bar:baz";
|
|
|
|
add (&s->paths, &s->path_count, path_name);
|
|
|
|
|
|
|
|
if (strcmp (*s->paths, path_name)) return 1;
|
|
|
|
|
|
|
|
eputs ("&PATHS="); eputs (itoa (&s->paths)); eputs ("\n");
|
|
|
|
eputs ("&FILES="); eputs (itoa (&s->files)); eputs ("\n");
|
|
|
|
|
mescc: refactor expr->accu, expr->accu*, fixes nontrivial struct by value assign.
* module/language/c99/compiler.mes: (pke): New function.
(expr->number): Rename from p-expr->number. Update callers.
(decl->info, init-declr->pointer, struct-field): Several pointeryness fixes.
(expr->accu*, expr->accu): Remove special-casing for foo.bar,
foo->bar, foo[bar]. Fixes struct by value assign for non-trival
expressions.
(accu->ident, ident-address->accu, ident->accu):
(base->ident-address, ident->base): Remove.
* scaffold/tests/7k-for-each-elem.c (test): Test it.
* scaffold/tests/7c-dynarray.c (test): Test it.
* scaffold/tests/7m-struct-char-array-assign.c: Test it.
* make.scm (add-scaffold-test): Build it.
2017-11-11 12:45:53 +00:00
|
|
|
// struct file *fs;
|
|
|
|
// eputs ("foo\n");
|
|
|
|
// fs = s->files[0];
|
|
|
|
struct file *fs = s->files[0];
|
2017-08-01 09:26:00 +00:00
|
|
|
eputs ("add s= "); eputs (itoa (s)); eputs ("\n");
|
|
|
|
eputs ("add fs= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
eputs ("&fs->[0]="); eputs (itoa (fs->name)); eputs ("\n");
|
|
|
|
eputs ("fs->name="); eputs (fs->name); eputs ("\n");
|
|
|
|
|
|
|
|
eputs ("ps= "); eputs (itoa (s->paths)); eputs ("\n");
|
|
|
|
eputs ("*ps "); eputs (*s->paths); eputs ("\n");
|
|
|
|
|
2017-08-05 19:09:19 +00:00
|
|
|
if (strcmp (fs->name, file_name)) return 2;
|
|
|
|
|
2017-08-01 09:26:00 +00:00
|
|
|
eputs ("&fs->[0]="); eputs (itoa (fs->name)); eputs ("\n");
|
|
|
|
eputs ("fs->name="); eputs (fs->name); eputs ("\n");
|
|
|
|
|
|
|
|
eputs ("ps= "); eputs (itoa (s->paths)); eputs ("\n");
|
|
|
|
eputs ("*ps "); eputs (*s->paths); eputs ("\n");
|
|
|
|
|
2017-08-05 19:09:19 +00:00
|
|
|
|
|
|
|
file = malloc (sizeof (struct file) + strlen (file_name));
|
|
|
|
file_name = "hallo";
|
|
|
|
strcpy (file->name, file_name);
|
|
|
|
add (&s->files, &s->file_count, file);
|
|
|
|
|
|
|
|
struct file **pf = s->files;
|
|
|
|
fs = pf[0];
|
|
|
|
eputs ("\n");
|
|
|
|
eputs ("&fs0*= "); eputs (itoa (&pf[0])); eputs ("\n");
|
|
|
|
|
|
|
|
eputs ("fs0*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
fs = s->files[0];
|
|
|
|
eputs ("fs0*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
eputs ("\n");
|
|
|
|
|
|
|
|
pf = s->files;
|
|
|
|
fs = pf[1];
|
|
|
|
eputs ("&fs1*= "); eputs (itoa (&pf[1])); eputs ("\n");
|
|
|
|
eputs ("fs1*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
fs = s->files[1];
|
|
|
|
eputs ("fs1*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
eputs ("\n");
|
|
|
|
if (strcmp (fs->name, file_name)) return 3;
|
|
|
|
|
|
|
|
fs = g_s.files[0];
|
|
|
|
eputs ("gfs0*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
fs = g_s.files[1];
|
|
|
|
eputs ("gfs1*= "); eputs (itoa (fs)); eputs ("\n");
|
|
|
|
eputs ("\n");
|
|
|
|
if (strcmp (fs->name, file_name)) return 3;
|
|
|
|
|
|
|
|
|
2017-08-01 09:26:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|