tg/generate.c

1813 lines
60 KiB
C
Raw Normal View History

/*
This file is part of tgl-libary/generate
Tgl-library/generate 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 2 of the License, or
(at your option) any later version.
Tgl-library/generate 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 this tgl-library/generate. If not, see <http://www.gnu.org/licenses/>.
Copyright Vitaly Valtman 2014
It is derivative work of VK/KittenPHP-DB-Engine (https://github.com/vk-com/kphp-kdb/)
Copyright 2012-2013 Vkontakte Ltd
2012-2013 Vitaliy Valtman
*/
2014-09-10 07:52:42 -04:00
2014-09-08 09:05:41 -04:00
#define _GNU_SOURCE
2014-08-11 14:04:59 -04:00
#include <stdio.h>
#include <signal.h>
#include <execinfo.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <assert.h>
2014-08-12 05:59:59 -04:00
#include <string.h>
2014-08-11 14:04:59 -04:00
#include "tl-tl.h"
2014-08-12 05:59:59 -04:00
#include "generate.h"
#include "tree.h"
#include "config.h"
int header;
#define tl_type_name_cmp(a,b) (a->name > b->name ? 1 : a->name < b->name ? -1 : 0)
DEFINE_TREE (tl_type, struct tl_type *, tl_type_name_cmp, 0)
DEFINE_TREE (tl_combinator, struct tl_combinator *, tl_type_name_cmp, 0)
struct tree_tl_type *type_tree;
struct tree_tl_combinator *function_tree;
void tl_function_insert_by_name (struct tl_combinator *c) {
function_tree = tree_insert_tl_combinator (function_tree, c, lrand48 ());
}
struct tl_type *tl_type_get_by_name (int name) {
static struct tl_type t;
t.name = name;
return tree_lookup_tl_type (type_tree, &t);
}
void tl_type_insert_by_name (struct tl_type *t) {
type_tree = tree_insert_tl_type (type_tree, t, lrand48 ());
}
2014-08-11 14:04:59 -04:00
2014-09-10 07:52:42 -04:00
int is_empty (struct tl_type *t) {
if (t->name == NAME_INT || t->name == NAME_LONG || t->name == NAME_DOUBLE || t->name == NAME_STRING) { return 1; }
if (t->constructors_num != 1) { return 0; }
int count = 0;
int i;
struct tl_combinator *c = t->constructors[0];
for (i = 0; i < c->args_num; i++) {
if (!(c->args[i]->flags & FLAG_OPT_VAR)) { count ++; }
}
return count == 1;
}
2014-08-11 14:04:59 -04:00
static char buf[1 << 20];
int buf_size;
int *buf_ptr = (int *)buf;
int *buf_end;
int verbosity;
int get_int (void) {
assert (buf_ptr < buf_end);
return *(buf_ptr ++);
}
long long get_long (void) {
assert (buf_ptr + 1 < buf_end);
long long r = *(long long *)buf_ptr;
buf_ptr += 2;
return r;
}
2014-08-12 05:59:59 -04:00
static void *malloc0 (int size) {
void *r = malloc (size);
assert (r);
2014-08-12 05:59:59 -04:00
memset (r, 0, size);
return r;
}
char *get_string (void) {
2014-08-11 14:04:59 -04:00
int l = *(unsigned char *)buf_ptr;
assert (l != 0xff);
char *res;
int tlen = 0;
if (l == 0xfe) {
l = ((unsigned)get_int ()) >> 8;
res = (char *)buf_ptr;
tlen = l;
} else {
res = ((char *)buf_ptr) + 1;
tlen = 1 + l;
}
2014-08-12 05:59:59 -04:00
int len = l;
2014-08-11 14:04:59 -04:00
tlen += ((-tlen) & 3);
assert (!(tlen & 3));
buf_ptr += tlen / 4;
assert (buf_ptr <= buf_end);
char *r = strndup (res, len);
assert (r);
return r;
2014-08-11 14:04:59 -04:00
}
2014-08-12 05:59:59 -04:00
int tn, fn, cn;
struct tl_type **tps;
struct tl_combinator **fns;
2014-08-11 14:04:59 -04:00
2014-08-12 05:59:59 -04:00
struct tl_tree *read_tree (int *var_num);
struct tl_tree *read_nat_expr (int *var_num);
struct tl_tree *read_type_expr (int *var_num);
int read_args_list (struct arg **args, int args_num, int *var_num);
#define use_var_nat_full_form(x) 0
void *int_to_var_nat_const_init (long long x) {
if (use_var_nat_full_form (x)) {
struct tl_tree_nat_const *T = malloc (sizeof (*T));
assert (T);
2014-08-12 05:59:59 -04:00
T->self.flags = 0;
T->self.methods = &tl_pnat_const_full_methods;
T->value = x;
return T;
} else {
return (void *)(long)(x * 2 - 0x80000001l);
}
}
long long var_nat_const_to_int (void *x) {
if (((long)x) & 1) {
return (((long)x) + 0x80000001l) / 2;
} else {
return ((struct tl_tree_nat_const *)x)->value;
}
}
int tl_tree_type_type (struct tl_tree *x) {
return NODE_TYPE_TYPE;
}
int tl_tree_type_array (struct tl_tree *x) {
return NODE_TYPE_ARRAY;
}
int tl_tree_type_nat_const (struct tl_tree *x) {
return NODE_TYPE_NAT_CONST;
}
int tl_tree_type_var_num (struct tl_tree *x) {
return NODE_TYPE_VAR_NUM;
}
int tl_tree_type_var_type (struct tl_tree *x) {
return NODE_TYPE_VAR_TYPE;
}
struct tl_tree_methods tl_var_num_methods = {
.type = tl_tree_type_var_num
};
struct tl_tree_methods tl_var_type_methods = {
.type = tl_tree_type_var_type
};
struct tl_tree_methods tl_type_methods = {
.type = tl_tree_type_type
};
struct tl_tree_methods tl_nat_const_methods = {
.type = tl_tree_type_nat_const
};
struct tl_tree_methods tl_array_methods = {
.type = tl_tree_type_array
};
struct tl_tree_methods tl_ptype_methods = {
.type = tl_tree_type_type
};
struct tl_tree_methods tl_parray_methods = {
.type = tl_tree_type_array
};
struct tl_tree_methods tl_pvar_num_methods = {
.type = tl_tree_type_var_num
};
struct tl_tree_methods tl_pvar_type_methods = {
.type = tl_tree_type_var_type
};
struct tl_tree_methods tl_nat_const_full_methods = {
.type = tl_tree_type_nat_const
};
struct tl_tree_methods tl_pnat_const_full_methods = {
.type = tl_tree_type_nat_const
};
struct tl_tree *read_num_const (int *var_num) {
return (void *)int_to_var_nat_const_init (get_int ());
}
2014-08-11 14:04:59 -04:00
int gen_uni_skip (struct tl_tree *t, char *cur_name, int *vars, int first, int fun) {
2014-08-12 05:59:59 -04:00
assert (t);
int x = TL_TREE_METHODS (t)->type (t);
int l = 0;
int i;
int j;
struct tl_tree_type *t1;
struct tl_tree_array *t2;
int y;
int L = strlen (cur_name);
char *fail = fun ? "return 0;" : "return -1;";
2014-08-12 05:59:59 -04:00
switch (x) {
case NODE_TYPE_TYPE:
t1 = (void *)t;
if (!first) {
printf (" if (ODDP(%s) || %s->type->name != 0x%08x) { %s }\n", cur_name, cur_name, t1->type->name, fail);
2014-08-12 05:59:59 -04:00
} else {
printf (" if (ODDP(%s) || (%s->type->name != 0x%08x && %s->type->name != 0x%08x)) { %s }\n", cur_name, cur_name, t1->type->name, cur_name, ~t1->type->name, fail);
2014-08-12 05:59:59 -04:00
}
for (i = 0; i < t1->children_num; i++) {
sprintf (cur_name + L, "->params[%d]", i);
gen_uni_skip (t1->children[i], cur_name, vars, 0, fun);
2014-08-12 05:59:59 -04:00
cur_name[L] = 0;
}
return 0;
case NODE_TYPE_NAT_CONST:
printf (" if (EVENP(%s) || ((long)%s) != %lld) { %s }\n", cur_name, cur_name, var_nat_const_to_int (t) * 2 + 1, fail);
2014-08-12 05:59:59 -04:00
return 0;
case NODE_TYPE_ARRAY:
printf (" if (ODDP(%s) || %s->type->name != TL_TYPE_ARRAY) { %s }\n", cur_name, cur_name, fail);
2014-08-12 05:59:59 -04:00
t2 = (void *)t;
sprintf (cur_name + L, "->params[0]");
y = gen_uni_skip (t2->multiplicity, cur_name, vars, 0, fun);
2014-08-12 05:59:59 -04:00
cur_name[L] = 0;
sprintf (cur_name + L, "->params[1]");
y += gen_uni_skip (t2->args[0]->type, cur_name, vars, 0, fun);
2014-08-12 05:59:59 -04:00
cur_name[L] = 0;
return 0;
case NODE_TYPE_VAR_TYPE:
printf (" if (ODDP(%s)) { %s }\n", cur_name, fail);
2014-08-12 05:59:59 -04:00
i = ((struct tl_tree_var_type *)t)->var_num;
if (!vars[i]) {
printf (" struct paramed_type *var%d = %s; assert (var%d);\n", i, cur_name, i);
vars[i] = 1;
} else if (vars[i] == 1) {
printf (" if (compare_types (var%d, %s) < 0) { %s }\n", i, cur_name, fail);
2014-08-12 05:59:59 -04:00
} else {
assert (0);
return -1;
}
return l;
case NODE_TYPE_VAR_NUM:
printf (" if (EVENP(%s)) { %s }\n", cur_name, fail);
2014-08-12 05:59:59 -04:00
i = ((struct tl_tree_var_num *)t)->var_num;
j = ((struct tl_tree_var_num *)t)->dif;
if (!vars[i]) {
printf (" struct paramed_type *var%d = ((void *)%s) + %d; assert (var%d);\n", i, cur_name, 2 * j, i);
vars[i] = 2;
} else if (vars[i] == 2) {
printf (" if (var%d != ((void *)%s) + %d) { %s }\n", i, cur_name, 2 * j, fail);
2014-08-12 05:59:59 -04:00
} else {
assert (0);
return -1;
}
return 0;
default:
assert (0);
return -1;
}
}
void print_offset (int len) {
int i;
for (i = 0; i < len; i++) { printf (" "); }
}
int gen_create (struct tl_tree *t, int *vars, int offset) {
int x = TL_TREE_METHODS (t)->type (t);
int i;
struct tl_tree_type *t1;
struct tl_tree_array *t2;
switch (x) {
case NODE_TYPE_TYPE:
print_offset (offset);
printf ("&(struct paramed_type){\n");
print_offset (offset + 2);
t1 = (void *)t;
if (t1->self.flags & FLAG_BARE) {
2014-09-10 07:52:42 -04:00
printf (".type = &(struct tl_type_descr) {.name = 0x%08x, .id = \"Bare_%s\", .params_num = %d, .params_types = %lld},\n", ~t1->type->name, t1->type->id, t1->type->arity, t1->type->params_types);
2014-08-12 05:59:59 -04:00
} else {
2014-09-10 07:52:42 -04:00
printf (".type = &(struct tl_type_descr) {.name = 0x%08x, .id = \"%s\", .params_num = %d, .params_types = %lld},\n", t1->type->name, t1->type->id, t1->type->arity, t1->type->params_types);
2014-08-12 05:59:59 -04:00
}
if (t1->children_num) {
print_offset (offset + 2);
printf (".params = (struct paramed_type *[]){\n");
for (i = 0; i < t1->children_num; i++) {
assert (gen_create (t1->children[i], vars, offset + 4) >= 0);
printf (",\n");
}
print_offset (offset + 2);
printf ("}\n");
} else {
print_offset (offset + 2);
printf (".params = 0,\n");
}
print_offset (offset);
printf ("}");
return 0;
case NODE_TYPE_NAT_CONST:
print_offset (offset);
printf ("INT2PTR (%d)", (int)var_nat_const_to_int (t));
return 0;
case NODE_TYPE_ARRAY:
print_offset (offset);
printf ("&(struct paramed_type){\n");
print_offset (offset + 2);
t2 = (void *)t;
2014-09-10 07:52:42 -04:00
printf (".type = &(struct tl_type_descr) {.name = NAME_ARRAY, .id = \"array\", .params_num = 2, .params_types = 1},\n");
2014-08-12 05:59:59 -04:00
print_offset (offset + 2);
printf (".params = (struct paramed_type **){\n");
gen_create (t2->multiplicity, vars, offset + 4);
printf (",\n");
gen_create (t2->args[0]->type, vars, offset + 4);
printf (",\n");
print_offset (offset + 2);
printf ("}\n");
print_offset (offset);
printf ("}");
return 0;
case NODE_TYPE_VAR_TYPE:
print_offset (offset);
printf ("var%d", ((struct tl_tree_var_type *)t)->var_num);
return 0;
case NODE_TYPE_VAR_NUM:
print_offset (offset);
printf ("((void *)var%d) + %d", ((struct tl_tree_var_type *)t)->var_num, 2 * ((struct tl_tree_var_num *)t)->dif);
return 0;
default:
assert (0);
return -1;
}
}
2014-09-10 07:52:42 -04:00
int gen_field_skip (struct arg *arg, int *vars, int num) {
2014-08-12 05:59:59 -04:00
assert (arg);
char *offset = " ";
int o = 0;
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
o = 2;
}
if (arg->var_num >= 0) {
assert (TL_TREE_METHODS (arg->type)->type (arg->type) == NODE_TYPE_TYPE);
int t = ((struct tl_tree_type *)arg->type)->type->name;
if (t == NAME_VAR_TYPE) {
fprintf (stderr, "Not supported yet\n");
assert (0);
} else {
assert (t == NAME_VAR_NUM);
if (vars[arg->var_num] == 0) {
2014-09-10 07:52:42 -04:00
printf ("%sif (in_remaining () < 4) { return -1;}\n", offset);
printf ("%sstruct paramed_type *var%d = INT2PTR (fetch_int ());\n", offset, arg->var_num);
2014-08-12 05:59:59 -04:00
vars[arg->var_num] = 2;
} else if (vars[arg->var_num] == 2) {
2014-09-10 07:52:42 -04:00
printf ("%sif (in_remaining () < 4) { return -1;}\n", offset);
printf ("%sif (vars%d != INT2PTR (fetch_int ())) { return -1; }\n", offset, arg->var_num);
2014-08-12 05:59:59 -04:00
} else {
assert (0);
return -1;
}
}
} else {
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
if (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE) {
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (arg->type, vars, 2 + o) >= 0);
printf (";\n");
int bare = arg->flags & FLAG_BARE;
if (!bare && t == NODE_TYPE_TYPE) {
bare = ((struct tl_tree_type *)arg->type)->self.flags & FLAG_BARE;
}
if (!bare) {
2014-08-12 17:32:11 -04:00
printf ("%sif (skip_type_%s (field%d) < 0) { return -1;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num);
2014-08-12 05:59:59 -04:00
} else {
2014-08-12 17:32:11 -04:00
printf ("%sif (skip_type_bare_%s (field%d) < 0) { return -1;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num);
2014-08-12 05:59:59 -04:00
}
} else {
assert (t == NODE_TYPE_ARRAY);
printf ("%sint multiplicity%d = PTR2INT (\n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->multiplicity, vars, 2 + o) >= 0);
printf ("%s);\n", offset);
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->args[0]->type, vars, 2 + o) >= 0);
printf (";\n");
printf ("%swhile (multiplicity%d -- > 0) {\n", offset, num);
printf ("%s if (skip_type_%s (field%d) < 0) { return -1;}\n", offset, "any", num);
printf ("%s}\n", offset);
}
}
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
2014-08-11 14:04:59 -04:00
return 0;
}
2014-09-10 07:52:42 -04:00
int gen_field_fetch (struct arg *arg, int *vars, int num, int empty) {
assert (arg);
char *offset = " ";
int o = 0;
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
o = 2;
}
if (!empty) {
printf("%sif (multiline_output >= 2) { print_offset (); }\n", offset);
}
if (arg->id && strlen (arg->id) && !empty) {
printf ("%sif (!disable_field_names) { eprintf (\" %s :\"); }\n", offset, arg->id);
}
if (arg->var_num >= 0) {
assert (TL_TREE_METHODS (arg->type)->type (arg->type) == NODE_TYPE_TYPE);
int t = ((struct tl_tree_type *)arg->type)->type->name;
if (t == NAME_VAR_TYPE) {
fprintf (stderr, "Not supported yet\n");
assert (0);
} else {
assert (t == NAME_VAR_NUM);
if (vars[arg->var_num] == 0) {
printf ("%sif (in_remaining () < 4) { return -1;}\n", offset);
printf ("%seprintf (\" %%d\", prefetch_int ());\n", offset);
printf ("%sstruct paramed_type *var%d = INT2PTR (fetch_int ());\n", offset, arg->var_num);
vars[arg->var_num] = 2;
} else if (vars[arg->var_num] == 2) {
printf ("%sif (in_remaining () < 4) { return -1;}\n", offset);
printf ("%seprintf (\" %%d\", prefetch_int ());\n", offset);
printf ("%sif (vars%d != INT2PTR (fetch_int ())) { return -1; }\n", offset, arg->var_num);
} else {
assert (0);
return -1;
}
}
} else {
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
if (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE) {
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (arg->type, vars, 2 + o) >= 0);
printf (";\n");
int bare = arg->flags & FLAG_BARE;
if (!bare && t == NODE_TYPE_TYPE) {
bare = ((struct tl_tree_type *)arg->type)->self.flags & FLAG_BARE;
}
if (!bare) {
printf ("%sif (fetch_type_%s (field%d) < 0) { return -1;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num);
} else {
printf ("%sif (fetch_type_bare_%s (field%d) < 0) { return -1;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num);
}
} else {
assert (t == NODE_TYPE_ARRAY);
printf ("%sint multiplicity%d = PTR2INT (\n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->multiplicity, vars, 2 + o) >= 0);
printf ("%s);\n", offset);
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->args[0]->type, vars, 2 + o) >= 0);
printf (";\n");
printf ("%seprintf (\" [\");\n", offset);
printf ("%sif (multiline_output >= 1) { eprintf (\"\\n\"); }\n", offset);
printf ("%sif (multiline_output >= 1) { multiline_offset += multiline_offset_size;}\n", offset);
printf ("%swhile (multiplicity%d -- > 0) {\n", offset, num);
printf ("%s if (multiline_output >= 1) { print_offset (); }\n", offset);
printf ("%s if (fetch_type_%s (field%d) < 0) { return -1;}\n", offset, "any", num);
printf ("%s if (multiline_output >= 1) { eprintf (\"\\n\"); }\n", offset);
printf ("%s}\n", offset);
printf ("%sif (multiline_output >= 1) { multiline_offset -= multiline_offset_size; print_offset ();}\n", offset);
printf ("%seprintf (\" ]\");\n", offset);
}
}
if (!empty) {
printf("%sif (multiline_output >= 2) { eprintf (\"\\n\"); }\n", offset);
}
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
return 0;
}
int gen_field_store (struct arg *arg, int *vars, int num, int from_func) {
assert (arg);
char *offset = " ";
int o = 0;
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
o = 2;
}
char *fail = from_func ? "0" : "-1";
char *expect = from_func ? "expect_token_ptr" : "expect_token";
if (arg->id && strlen (arg->id) > 0) {
printf ("%sif (cur_token_len >= 0 && cur_token_len == %d && !cur_token_quoted && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s local_next_token ();\n", offset);
printf ("%s %s (\":\", 1);\n", offset, expect);
printf ("%s}\n", offset);
}
if (arg->var_num >= 0) {
printf ("%sif (cur_token_len < 0) { return %s; }\n", offset, fail);
assert (TL_TREE_METHODS (arg->type)->type (arg->type) == NODE_TYPE_TYPE);
int t = ((struct tl_tree_type *)arg->type)->type->name;
if (t == NAME_VAR_TYPE) {
fprintf (stderr, "Not supported yet\n");
assert (0);
} else {
assert (t == NAME_VAR_NUM);
if (vars[arg->var_num] == 0) {
printf ("%sif (!is_int ()) { return %s;}\n", offset, fail);
printf ("%sstruct paramed_type *var%d = INT2PTR (get_int ());\n", offset, arg->var_num);
printf ("%sout_int (get_int ());\n", offset);
printf ("%sassert (var%d);\n", offset, arg->var_num);
printf ("%slocal_next_token ();\n", offset);
vars[arg->var_num] = 2;
} else if (vars[arg->var_num] == 2) {
printf ("%sif (!is_int ()) { return %s;}\n", offset, fail);
printf ("%sif (vars%d != INT2PTR (get_int ())) { return %s; }\n", offset, arg->var_num, fail);
printf ("%sout_int (get_int ());\n", offset);
printf ("%slocal_next_token ();\n", offset);
} else {
assert (0);
return -1;
}
}
} else {
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
if (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE) {
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (arg->type, vars, 2 + o) >= 0);
printf (";\n");
int bare = arg->flags & FLAG_BARE;
if (!bare && t == NODE_TYPE_TYPE) {
bare = ((struct tl_tree_type *)arg->type)->self.flags & FLAG_BARE;
}
if (!bare) {
printf ("%sif (store_type_%s (field%d) < 0) { return %s;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num, fail);
} else {
printf ("%sif (store_type_bare_%s (field%d) < 0) { return %s;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num, fail);
}
} else {
printf ("%s%s (\"[\", 1);\n", offset, expect);
assert (t == NODE_TYPE_ARRAY);
printf ("%sint multiplicity%d = PTR2INT (\n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->multiplicity, vars, 2 + o) >= 0);
printf ("%s);\n", offset);
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->args[0]->type, vars, 2 + o) >= 0);
printf (";\n");
printf ("%swhile (multiplicity%d -- > 0) {\n", offset, num);
printf ("%s if (store_type_%s (field%d) < 0) { return %s;}\n", offset, "any", num, fail);
printf ("%s}\n", offset);
printf ("%s%s (\"]\", 1);\n", offset, expect);
}
}
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
return 0;
}
int gen_field_autocomplete (struct arg *arg, int *vars, int num, int from_func) {
assert (arg);
char *offset = " ";
int o = 0;
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
o = 2;
}
char *fail = from_func ? "0" : "-1";
char *expect = from_func ? "expect_token_ptr_autocomplete" : "expect_token_autocomplete";
if (arg->id && strlen (arg->id) > 0) {
printf ("%sif (cur_token_len == -3 && cur_token_real_len <= %d && !cur_token_quoted && !memcmp (cur_token, \"%s\", cur_token_real_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s set_autocomplete_string (\"%s\");\n", offset, arg->id);
printf ("%s return %s;\n", offset, fail);
printf ("%s}\n", offset);
printf ("%sif (cur_token_len >= 0 && cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s local_next_token ();\n", offset);
printf ("%s %s (\":\", 1);\n", offset, expect);
printf ("%s}\n", offset);
}
if (arg->var_num >= 0) {
printf ("%sif (cur_token_len < 0) { return %s; }\n", offset, fail);
assert (TL_TREE_METHODS (arg->type)->type (arg->type) == NODE_TYPE_TYPE);
int t = ((struct tl_tree_type *)arg->type)->type->name;
if (t == NAME_VAR_TYPE) {
fprintf (stderr, "Not supported yet\n");
assert (0);
} else {
assert (t == NAME_VAR_NUM);
if (vars[arg->var_num] == 0) {
printf ("%sif (!is_int ()) { return %s;}\n", offset, fail);
printf ("%sstruct paramed_type *var%d = INT2PTR (get_int ());\n", offset, arg->var_num);
printf ("%sassert (var%d);\n", offset, arg->var_num);
printf ("%slocal_next_token ();\n", offset);
vars[arg->var_num] = 2;
} else if (vars[arg->var_num] == 2) {
printf ("%sif (!is_int ()) { return %s;}\n", offset, fail);
printf ("%sif (vars%d != INT2PTR (get_int ())) { return %s; }\n", offset, arg->var_num, fail);
printf ("%slocal_next_token ();\n", offset);
} else {
assert (0);
return -1;
}
}
} else {
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
if (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE) {
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (arg->type, vars, 2 + o) >= 0);
printf (";\n");
int bare = arg->flags & FLAG_BARE;
if (!bare && t == NODE_TYPE_TYPE) {
bare = ((struct tl_tree_type *)arg->type)->self.flags & FLAG_BARE;
}
if (!bare) {
printf ("%sif (autocomplete_type_%s (field%d) < 0) { return %s;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num, fail);
} else {
printf ("%sif (autocomplete_type_bare_%s (field%d) < 0) { return %s;}\n", offset, t == NODE_TYPE_VAR_TYPE ? "any" : ((struct tl_tree_type *)arg->type)->type->print_id, num, fail);
}
} else {
printf ("%s%s (\"[\", 1);\n", offset, expect);
assert (t == NODE_TYPE_ARRAY);
printf ("%sint multiplicity%d = PTR2INT (\n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->multiplicity, vars, 2 + o) >= 0);
printf ("%s);\n", offset);
printf ("%sstruct paramed_type *field%d = \n", offset, num);
assert (gen_create (((struct tl_tree_array *)arg->type)->args[0]->type, vars, 2 + o) >= 0);
printf (";\n");
printf ("%swhile (multiplicity%d -- > 0) {\n", offset, num);
printf ("%s if (autocomplete_type_%s (field%d) < 0) { return %s;}\n", offset, "any", num, fail);
printf ("%s}\n", offset);
printf ("%s%s (\"]\", 1);\n", offset, expect);
}
}
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
return 0;
}
int gen_field_autocomplete_excl (struct arg *arg, int *vars, int num, int from_func) {
assert (arg);
assert (arg->var_num < 0);
char *offset = " ";
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
}
char *fail = from_func ? "0" : "-1";
char *expect = from_func ? "expect_token_ptr_autocomplete" : "expect_token_autocomplete";
if (arg->id && strlen (arg->id) > 0) {
printf ("%sif (cur_token_len == -3 && cur_token_real_len <= %d && !cur_token_quoted && !memcmp (cur_token, \"%s\", cur_token_real_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s set_autocomplete_string (\"%s\");\n", offset, arg->id);
printf ("%s return %s;\n", offset, fail);
printf ("%s}\n", offset);
printf ("%sif (cur_token_len >= 0 && cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s local_next_token ();\n", offset);
printf ("%s %s (\":\", 1);\n", offset, expect);
printf ("%s}\n", offset);
}
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
assert (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE);
printf ("%sstruct paramed_type *field%d = autocomplete_function_any ();\n", offset, num);
printf ("%sif (!field%d) { return 0; }\n", offset, num);
2014-09-11 05:35:27 -04:00
printf ("%sadd_var_to_be_freed (field%d);\n", offset, num);
static char s[20];
sprintf (s, "field%d", num);
gen_uni_skip (arg->type, s, vars, 1, 1);
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
return 0;
}
int gen_field_store_excl (struct arg *arg, int *vars, int num, int from_func) {
assert (arg);
assert (arg->var_num < 0);
char *offset = " ";
if (arg->exist_var_num >= 0) {
printf (" if (PTR2INT (var%d) & (1 << %d)) {\n", arg->exist_var_num, arg->exist_var_bit);
offset = " ";
}
char *expect = from_func ? "expect_token_ptr" : "expect_token";
if (arg->id && strlen (arg->id) > 0) {
printf ("%sif (cur_token_len >= 0 && cur_token_len == %d && !cur_token_quoted && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", offset, (int)(strlen (arg->id)), arg->id);
printf ("%s local_next_token ();\n", offset);
printf ("%s %s (\":\", 1);\n", offset, expect);
printf ("%s}\n", offset);
}
int t = TL_TREE_METHODS (arg->type)->type (arg->type);
assert (t == NODE_TYPE_TYPE || t == NODE_TYPE_VAR_TYPE);
printf ("%sstruct paramed_type *field%d = store_function_any ();\n", offset, num);
printf ("%sif (!field%d) { return 0; }\n", offset, num);
static char s[20];
sprintf (s, "field%d", num);
gen_uni_skip (arg->type, s, vars, 1, 1);
if (arg->exist_var_num >= 0) {
printf (" }\n");
}
return 0;
}
2014-09-10 07:52:42 -04:00
void gen_constructor_skip (struct tl_combinator *c) {
2014-08-12 17:32:11 -04:00
printf ("int skip_constructor_%s (struct paramed_type *T) {\n", c->print_id);
2014-09-10 07:52:42 -04:00
int i;
for (i = 0; i < c->args_num; i++) if (c->args[i]->flags & FLAG_EXCL) {
printf (" return -1;\n");
printf ("}\n");
return;
}
2014-08-12 05:59:59 -04:00
static char s[10000];
sprintf (s, "T");
int *vars = malloc0 (c->var_num * 4);;
gen_uni_skip (c->result, s, vars, 1, 0);
2014-08-12 05:59:59 -04:00
if (c->name == NAME_INT) {
2014-09-10 07:52:42 -04:00
printf (" if (in_remaining () < 4) { return -1;}\n");
printf (" fetch_int ();\n");
2014-08-12 05:59:59 -04:00
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_LONG) {
2014-09-10 07:52:42 -04:00
printf (" if (in_remaining () < 8) { return -1;}\n");
printf (" fetch_long ();\n");
2014-08-12 05:59:59 -04:00
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_STRING) {
2014-09-10 07:52:42 -04:00
printf (" int l = prefetch_strlen ();\n");
printf (" if (l < 0) { return -1;}\n");
printf (" fetch_str (l);\n");
2014-08-12 05:59:59 -04:00
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_DOUBLE) {
2014-09-10 07:52:42 -04:00
printf (" if (in_remaining () < 8) { return -1;}\n");
printf (" fetch_double ();\n");
2014-08-12 05:59:59 -04:00
printf (" return 0;\n");
printf ("}\n");
return;
}
2014-09-10 07:52:42 -04:00
for (i = 0; i < c->args_num; i++) if (!(c->args[i]->flags & FLAG_OPT_VAR)) {
assert (gen_field_skip (c->args[i], vars, i + 1) >= 0);
}
free (vars);
printf (" return 0;\n");
printf ("}\n");
}
void gen_constructor_fetch (struct tl_combinator *c) {
printf ("int fetch_constructor_%s (struct paramed_type *T) {\n", c->print_id);
2014-08-12 05:59:59 -04:00
int i;
2014-09-10 07:52:42 -04:00
for (i = 0; i < c->args_num; i++) if (c->args[i]->flags & FLAG_EXCL) {
printf (" return -1;\n");
printf ("}\n");
return;
}
static char s[10000];
sprintf (s, "T");
int *vars = malloc0 (c->var_num * 4);;
gen_uni_skip (c->result, s, vars, 1, 0);
2014-09-10 07:52:42 -04:00
if (c->name == NAME_INT) {
printf (" if (in_remaining () < 4) { return -1;}\n");
printf (" eprintf (\" %%d\", fetch_int ());\n");
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_LONG) {
printf (" if (in_remaining () < 8) { return -1;}\n");
printf (" eprintf (\" %%lld\", fetch_long ());\n");
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_STRING) {
printf (" static char buf[1 << 22];\n");
printf (" int l = prefetch_strlen ();\n");
printf (" if (l < 0 || (l >= (1 << 22) - 2)) { return -1; }\n");
printf (" memcpy (buf, fetch_str (l), l);\n");
printf (" buf[l] = 0;\n");
printf (" print_escaped_string (buf);\n");
2014-09-10 07:52:42 -04:00
printf (" return 0;\n");
printf ("}\n");
return;
} else if (c->name == NAME_DOUBLE) {
printf (" if (in_remaining () < 8) { return -1;}\n");
printf (" eprintf (\" %%lf\", fetch_double ());\n");
printf (" return 0;\n");
printf ("}\n");
return;
}
assert (c->result->methods->type (c->result) == NODE_TYPE_TYPE);
int empty = is_empty (((struct tl_tree_type *)c->result)->type);
if (!empty) {
printf (" eprintf (\" %s\");\n", c->id);
printf (" if (multiline_output >= 2) { eprintf (\"\\n\"); }\n");
}
2014-08-12 05:59:59 -04:00
for (i = 0; i < c->args_num; i++) if (!(c->args[i]->flags & FLAG_OPT_VAR)) {
2014-09-10 07:52:42 -04:00
assert (gen_field_fetch (c->args[i], vars, i + 1, empty) >= 0);
2014-08-12 05:59:59 -04:00
}
free (vars);
printf (" return 0;\n");
printf ("}\n");
}
2014-09-10 07:52:42 -04:00
void gen_constructor_store (struct tl_combinator *c) {
printf ("int store_constructor_%s (struct paramed_type *T) {\n", c->print_id);
int i;
for (i = 0; i < c->args_num; i++) if (c->args[i]->flags & FLAG_EXCL) {
printf (" return -1;\n");
printf ("}\n");
return;
}
static char s[10000];
sprintf (s, "T");
int *vars = malloc0 (c->var_num * 4);;
gen_uni_skip (c->result, s, vars, 1, 0);
2014-09-10 07:52:42 -04:00
if (c->name == NAME_INT) {
printf (" if (is_int ()) {\n");
printf (" out_int (get_int ());\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_LONG) {
printf (" if (is_int ()) {\n");
printf (" out_long (get_int ());\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_STRING) {
printf (" if (cur_token_len >= 0) {\n");
printf (" out_cstring (cur_token, cur_token_len);\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_DOUBLE) {
printf (" if (is_double ()) {\n");
printf (" out_double (get_double());\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
}
for (i = 0; i < c->args_num; i++) if (!(c->args[i]->flags & FLAG_OPT_VAR)) {
assert (gen_field_store (c->args[i], vars, i + 1, 0) >= 0);
}
free (vars);
printf (" return 0;\n");
printf ("}\n");
}
void gen_constructor_autocomplete (struct tl_combinator *c) {
printf ("int autocomplete_constructor_%s (struct paramed_type *T) {\n", c->print_id);
int i;
for (i = 0; i < c->args_num; i++) if (c->args[i]->flags & FLAG_EXCL) {
printf (" return -1;\n");
printf ("}\n");
return;
}
static char s[10000];
sprintf (s, "T");
int *vars = malloc0 (c->var_num * 4);;
gen_uni_skip (c->result, s, vars, 1, 0);
2014-09-10 07:52:42 -04:00
if (c->name == NAME_INT) {
printf (" if (is_int ()) {\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_LONG) {
printf (" if (is_int ()) {\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_STRING) {
printf (" if (cur_token_len >= 0) {\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
} else if (c->name == NAME_DOUBLE) {
printf (" if (is_double ()) {\n");
printf (" local_next_token ();\n");
printf (" return 0;\n");
printf (" } else {\n");
printf (" return -1;\n");
printf (" }\n");
printf ("}\n");
return;
}
for (i = 0; i < c->args_num; i++) if (!(c->args[i]->flags & FLAG_OPT_VAR)) {
assert (gen_field_autocomplete (c->args[i], vars, i + 1, 0) >= 0);
}
free (vars);
printf (" return 0;\n");
printf ("}\n");
}
void gen_type_skip (struct tl_type *t) {
2014-08-12 17:32:11 -04:00
printf ("int skip_type_%s (struct paramed_type *T) {\n", t->print_id);
2014-09-10 07:52:42 -04:00
printf (" if (in_remaining () < 4) { return -1;}\n");
printf (" int magic = fetch_int ();\n");
2014-08-12 05:59:59 -04:00
printf (" switch (magic) {\n");
int i;
for (i = 0; i < t->constructors_num; i++) {
2014-08-12 17:32:11 -04:00
printf (" case 0x%08x: return skip_constructor_%s (T);\n", t->constructors[i]->name, t->constructors[i]->print_id);
2014-08-12 05:59:59 -04:00
}
printf (" default: return -1;\n");
printf (" }\n");
printf ("}\n");
2014-08-12 17:32:11 -04:00
printf ("int skip_type_bare_%s (struct paramed_type *T) {\n", t->print_id);
2014-09-10 07:52:42 -04:00
if (t->constructors_num > 1) {
printf (" int *save_in_ptr = in_ptr;\n");
for (i = 0; i < t->constructors_num; i++) {
printf (" if (skip_constructor_%s (T) >= 0) { return 0; }\n", t->constructors[i]->print_id);
printf (" in_ptr = save_in_ptr;\n");
}
} else {
for (i = 0; i < t->constructors_num; i++) {
printf (" if (skip_constructor_%s (T) >= 0) { return 0; }\n", t->constructors[i]->print_id);
}
}
printf (" return -1;\n");
printf ("}\n");
}
void gen_type_fetch (struct tl_type *t) {
int empty = is_empty (t);;
printf ("int fetch_type_%s (struct paramed_type *T) {\n", t->print_id);
printf (" if (in_remaining () < 4) { return -1;}\n");
if (!empty) {
printf (" if (multiline_output >= 2) { multiline_offset += multiline_offset_size; }\n");
printf (" eprintf (\" (\");\n");
}
printf (" int magic = fetch_int ();\n");
printf (" int res = -1;\n");
printf (" switch (magic) {\n");
int i;
2014-08-12 05:59:59 -04:00
for (i = 0; i < t->constructors_num; i++) {
2014-09-10 07:52:42 -04:00
printf (" case 0x%08x: res = fetch_constructor_%s (T); break;\n", t->constructors[i]->name, t->constructors[i]->print_id);
}
printf (" default: return -1;\n");
printf (" }\n");
if (!empty) {
printf (" if (res >= 0) {\n");
printf (" if (multiline_output >= 2) { multiline_offset -= multiline_offset_size; print_offset (); }\n");
printf (" eprintf (\" )\");\n");
//printf (" if (multiline_output >= 2) { printf (\"\\n\"); }\n");
printf (" }\n");
}
printf (" return res;\n");
printf ("}\n");
printf ("int fetch_type_bare_%s (struct paramed_type *T) {\n", t->print_id);
if (t->constructors_num > 1) {
printf (" int *save_in_ptr = in_ptr;\n");
if (!empty) {
printf (" if (multiline_output >= 2) { multiline_offset += multiline_offset_size; }\n");
}
for (i = 0; i < t->constructors_num; i++) {
printf (" if (skip_constructor_%s (T) >= 0) { in_ptr = save_in_ptr; %sassert (!fetch_constructor_%s (T)); %sreturn 0; }\n", t->constructors[i]->print_id, empty ? "" : "eprintf (\" (\"); ", t->constructors[i]->print_id , empty ? "" : "if (multiline_output >= 2) { multiline_offset -= multiline_offset_size; print_offset (); } eprintf (\" )\");");
printf (" in_ptr = save_in_ptr;\n");
}
} else {
for (i = 0; i < t->constructors_num; i++) {
if (!empty) {
printf (" if (multiline_output >= 2) { multiline_offset += multiline_offset_size; }\n");
printf (" eprintf (\" (\");\n");
}
printf (" if (fetch_constructor_%s (T) >= 0) { %sreturn 0; }\n", t->constructors[i]->print_id, empty ? "" : "if (multiline_output >= 2) { multiline_offset -= multiline_offset_size; print_offset (); } eprintf (\" )\");" );
}
2014-08-12 05:59:59 -04:00
}
printf (" return -1;\n");
printf ("}\n");
}
2014-09-10 07:52:42 -04:00
void gen_type_store (struct tl_type *t) {
int empty = is_empty (t);;
int k = 0;
for (k = 0; k < 2; k++) {
printf ("int store_type_%s%s (struct paramed_type *T) {\n", k == 0 ? "" : "bare_", t->print_id);
if (empty) {
printf (" if (store_constructor_%s (T) < 0) { return -1; }\n", t->constructors[0]->print_id);
printf (" return 0;\n");
printf ("}\n");
} else {
printf (" expect_token (\"(\", 1);\n");
printf (" if (cur_token_len < 0) { return -1; }\n");
printf (" if (cur_token_len < 0) { return -1; }\n");
int i;
for (i = 0; i < t->constructors_num; i++) {
printf (" if (cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", (int)strlen (t->constructors[i]->id), t->constructors[i]->id);
if (!k) {
printf (" out_int (0x%08x);\n", t->constructors[i]->name);
}
printf (" local_next_token ();\n");
printf (" if (store_constructor_%s (T) < 0) { return -1; }\n", t->constructors[i]->print_id);
printf (" expect_token (\")\", 1);\n");
printf (" return 0;\n");
printf (" }\n");
}
/*if (t->constructors_num == 1) {
printf (" if (!force) {\n");
if (!k) {
printf (" out_int (0x%08x);\n", t->constructors[0]->name);
}
printf (" if (store_constructor_%s (T) < 0) { return -1; }\n", t->constructors[0]->print_id);
printf (" expect_token (\")\", 1);\n");
printf (" return 0;\n");
printf (" }\n");
}*/
printf (" return -1;\n");
printf ("}\n");
}
}
}
void gen_type_autocomplete (struct tl_type *t) {
int empty = is_empty (t);;
int k = 0;
for (k = 0; k < 2; k++) {
printf ("int autocomplete_type_%s%s (struct paramed_type *T) {\n", k == 0 ? "" : "bare_", t->print_id);
if (empty) {
printf (" if (autocomplete_constructor_%s (T) < 0) { return -1; }\n", t->constructors[0]->print_id);
printf (" return 0;\n");
printf ("}\n");
} else {
printf (" expect_token_autocomplete (\"(\", 1);\n");
printf (" if (cur_token_len == -3) { set_autocomplete_type (do_autocomplete_type_%s); return -1; }\n", t->print_id);
printf (" if (cur_token_len < 0) { return -1; }\n");
int i;
for (i = 0; i < t->constructors_num; i++) {
printf (" if (cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", (int)strlen (t->constructors[i]->id), t->constructors[i]->id);
printf (" local_next_token ();\n");
printf (" if (autocomplete_constructor_%s (T) < 0) { return -1; }\n", t->constructors[i]->print_id);
printf (" expect_token_autocomplete (\")\", 1);\n");
printf (" return 0;\n");
printf (" }\n");
}
/*if (t->constructors_num == 1) {
printf (" if (!force) {\n");
printf (" if (autocomplete_constructor_%s (T) < 0) { return -1; }\n", t->constructors[0]->print_id);
printf (" expect_token_autocomplete (\")\", 1);\n");
printf (" return 0;\n");
printf (" }\n");
}*/
printf (" return -1;\n");
printf ("}\n");
}
}
}
void gen_function_store (struct tl_combinator *f) {
printf ("struct paramed_type *store_function_%s (void) {\n", f->print_id);
int i;
int *vars = malloc0 (f->var_num * 4);;
for (i = 0; i < f->args_num; i++) if (!(f->args[i]->flags & FLAG_OPT_VAR)) {
if (f->args[i]->flags & FLAG_EXCL) {
assert (gen_field_store_excl (f->args[i], vars, i + 1, 1) >= 0);
} else {
assert (gen_field_store (f->args[i], vars, i + 1, 1) >= 0);
}
2014-09-10 07:52:42 -04:00
}
printf (" struct paramed_type *R = \n");
assert (gen_create (f->result, vars, 2) >= 0);
printf (";\n");
free (vars);
printf (" return paramed_type_dup (R);\n");
printf ("}\n");
}
void gen_function_autocomplete (struct tl_combinator *f) {
printf ("struct paramed_type *autocomplete_function_%s (void) {\n", f->print_id);
int i;
int *vars = malloc0 (f->var_num * 4);;
for (i = 0; i < f->args_num; i++) if (!(f->args[i]->flags & FLAG_OPT_VAR)) {
if (f->args[i]->flags & FLAG_EXCL) {
assert (gen_field_autocomplete_excl (f->args[i], vars, i + 1, 1) >= 0);
} else {
assert (gen_field_autocomplete (f->args[i], vars, i + 1, 1) >= 0);
}
2014-09-10 07:52:42 -04:00
}
printf (" struct paramed_type *R = \n");
assert (gen_create (f->result, vars, 2) >= 0);
printf (";\n");
2014-09-10 07:52:42 -04:00
free (vars);
printf (" return paramed_type_dup (R);\n");
2014-09-10 07:52:42 -04:00
printf ("}\n");
}
void gen_type_do_autocomplete (struct tl_type *t) {
printf ("int do_autocomplete_type_%s (const char *text, int text_len, int index, char **R) {\n", t->print_id);
printf (" index ++;\n");
int i;
for (i = 0; i < t->constructors_num; i++) {
printf (" if (index == %d) { if (!strncmp (text, \"%s\", text_len)) { *R = tstrdup (\"%s\"); return index; } else { index ++; }}\n", i, t->constructors[i]->id, t->constructors[i]->id);
}
printf (" *R = 0;\n");
printf (" return 0;\n");
printf ("}\n");
}
2014-08-12 05:59:59 -04:00
struct tl_tree *read_num_var (int *var_num) {
struct tl_tree_var_num *T = malloc0 (sizeof (*T));
T->self.flags = 0;
T->self.methods = &tl_pvar_num_methods;;
T->dif = get_int ();
T->var_num = get_int ();
if (T->var_num >= *var_num) {
*var_num = T->var_num + 1;
}
assert (!(T->self.flags & FLAG_NOVAR));
return (void *)T;
}
struct tl_tree *read_type_var (int *var_num) {
struct tl_tree_var_type *T = malloc0 (sizeof (*T));
T->self.methods = &tl_pvar_type_methods;
T->var_num = get_int ();
T->self.flags = get_int ();
if (T->var_num >= *var_num) {
*var_num = T->var_num + 1;
}
assert (!(T->self.flags & (FLAG_NOVAR | FLAG_BARE)));
return (void *)T;
}
struct tl_tree *read_array (int *var_num) {
struct tl_tree_array *T = malloc0 (sizeof (*T));
T->self.methods = &tl_parray_methods;
T->self.flags = 0;
T->multiplicity = read_nat_expr (var_num);
assert (T->multiplicity);
T->args_num = get_int ();
assert (T->args_num >= 0 && T->args_num <= 1000);
T->args = malloc0 (sizeof (void *) * T->args_num);
assert (read_args_list (T->args, T->args_num, var_num) >= 0);
T->self.flags |= FLAG_NOVAR;
int i;
for (i = 0; i < T->args_num; i++) {
if (!(T->args[i]->flags & FLAG_NOVAR)) {
T->self.flags &= ~FLAG_NOVAR;
}
}
return (void *)T;
}
struct tl_tree *read_type (int *var_num) {
struct tl_tree_type *T = malloc0 (sizeof (*T));
T->self.methods = &tl_ptype_methods;
T->type = tl_type_get_by_name (get_int ());
assert (T->type);
T->self.flags = get_int ();
T->children_num = get_int ();
assert (T->type->arity == T->children_num);
T->children = malloc0 (sizeof (void *) * T->children_num);
int i;
T->self.flags |= FLAG_NOVAR;
for (i = 0; i < T->children_num; i++) {
int t = get_int ();
if (t == (int)TLS_EXPR_NAT) {
assert ((T->type->params_types & (1 << i)));
T->children[i] = read_nat_expr (var_num);
} else if (t == (int)TLS_EXPR_TYPE) {
assert (!(T->type->params_types & (1 << i)));
T->children[i] = read_type_expr (var_num);
} else {
assert (0);
}
if (!TL_IS_NAT_VAR (T->children[i]) && !(T->children[i]->flags & FLAG_NOVAR)) {
T->self.flags &= ~FLAG_NOVAR;
}
}
return (void *)T;
}
struct tl_tree *read_tree (int *var_num) {
int x = get_int ();
if (verbosity >= 2) {
fprintf (stderr, "read_tree: constructor = 0x%08x\n", x);
}
switch (x) {
case TLS_TREE_NAT_CONST:
return read_num_const (var_num);
case TLS_TREE_NAT_VAR:
return read_num_var (var_num);
case TLS_TREE_TYPE_VAR:
return read_type_var (var_num);
case TLS_TREE_TYPE:
return read_type (var_num);
case TLS_TREE_ARRAY:
return read_array (var_num);
default:
if (verbosity) {
fprintf (stderr, "x = %d\n", x);
}
assert (0);
return 0;
}
}
struct tl_tree *read_type_expr (int *var_num) {
int x = get_int ();
if (verbosity >= 2) {
fprintf (stderr, "read_type_expr: constructor = 0x%08x\n", x);
}
switch (x) {
case TLS_TYPE_VAR:
return read_type_var (var_num);
case TLS_TYPE_EXPR:
return read_type (var_num);
case TLS_ARRAY:
return read_array (var_num);
default:
if (verbosity) {
fprintf (stderr, "x = %d\n", x);
}
assert (0);
return 0;
}
}
struct tl_tree *read_nat_expr (int *var_num) {
int x = get_int ();
if (verbosity >= 2) {
fprintf (stderr, "read_nat_expr: constructor = 0x%08x\n", x);
}
switch (x) {
case TLS_NAT_CONST:
return read_num_const (var_num);
case TLS_NAT_VAR:
return read_num_var (var_num);
default:
if (verbosity) {
fprintf (stderr, "x = %d\n", x);
}
assert (0);
return 0;
}
}
struct tl_tree *read_expr (int *var_num) {
int x = get_int ();
if (verbosity >= 2) {
fprintf (stderr, "read_nat_expr: constructor = 0x%08x\n", x);
}
switch (x) {
case TLS_EXPR_NAT:
return read_nat_expr (var_num);
case TLS_EXPR_TYPE:
return read_type_expr (var_num);
default:
if (verbosity) {
fprintf (stderr, "x = %d\n", x);
}
assert (0);
return 0;
}
}
int read_args_list (struct arg **args, int args_num, int *var_num) {
int i;
for (i = 0; i < args_num; i++) {
args[i] = malloc0 (sizeof (struct arg));
args[i]->exist_var_num = -1;
args[i]->exist_var_bit = 0;
assert (get_int () == TLS_ARG_V2);
args[i]->id = get_string ();
args[i]->flags = get_int ();
if (args[i]->flags & 2) {
args[i]->flags &= ~2;
args[i]->flags |= (1 << 20);
}
if (args[i]->flags & 4) {
args[i]->flags &= ~4;
args[i]->var_num = get_int ();
} else {
args[i]->var_num = -1;
}
2014-09-10 07:52:42 -04:00
int x = args[i]->flags & 6;
args[i]->flags &= ~6;
if (x & 2) { args[i]->flags |= 4; }
if (x & 4) { args[i]->flags |= 2; }
2014-08-12 05:59:59 -04:00
if (args[i]->var_num >= *var_num) {
*var_num = args[i]->var_num + 1;
}
if (args[i]->flags & FLAG_OPT_FIELD) {
args[i]->exist_var_num = get_int ();
args[i]->exist_var_bit = get_int ();
}
args[i]->type = read_type_expr (var_num);
assert (args[i]->type);
if (args[i]->var_num < 0 && args[i]->exist_var_num < 0 && (TL_IS_NAT_VAR(args[i]->type) || (args[i]->type->flags & FLAG_NOVAR))) {
args[i]->flags |= FLAG_NOVAR;
}
}
return 1;
}
int read_combinator_args_list (struct tl_combinator *c) {
c->args_num = get_int ();
if (verbosity >= 2) {
fprintf (stderr, "c->id = %s, c->args_num = %d\n", c->id, c->args_num);
}
assert (c->args_num >= 0 && c->args_num <= 1000);
c->args = malloc0 (sizeof (void *) * c->args_num);
c->var_num = 0;
return read_args_list (c->args, c->args_num, &c->var_num);
}
int read_combinator_right (struct tl_combinator *c) {
assert (get_int () == TLS_COMBINATOR_RIGHT_V2);
c->result = read_type_expr (&c->var_num);
assert (c->result);
return 1;
}
int read_combinator_left (struct tl_combinator *c) {
int x = get_int ();
if (x == (int)TLS_COMBINATOR_LEFT_BUILTIN) {
c->args_num = 0;
c->var_num = 0;
c->args = 0;
return 1;
} else if (x == TLS_COMBINATOR_LEFT) {
return read_combinator_args_list (c);
} else {
assert (0);
return -1;
}
}
2014-08-12 17:32:11 -04:00
char *gen_print_id (const char *id) {
static char s[1000];
char *ptr = s;
int first = 1;
while (*id) {
if (*id == '.') {
*(ptr ++) = '_';
} else if (*id >= 'A' && *id <= 'Z') {
if (!first && *(ptr - 1) != '_') {
*(ptr ++) = '_';
}
*(ptr ++) = *id - 'A' + 'a';
} else {
*(ptr ++) = *id;
}
id ++;
first = 0;
}
*ptr = 0;
return s;
}
2014-08-12 05:59:59 -04:00
struct tl_combinator *read_combinators (int v) {
struct tl_combinator *c = malloc0 (sizeof (*c));
c->name = get_int ();
c->id = get_string ();
2014-08-12 17:32:11 -04:00
c->print_id = strdup (gen_print_id (c->id));
assert (c->print_id);
2014-08-12 17:32:11 -04:00
//char *s = c->id;
//while (*s) { if (*s == '.') { *s = '_'; } ; s ++;}
2014-08-12 05:59:59 -04:00
int x = get_int ();
struct tl_type *t = tl_type_get_by_name (x);
assert (t || (!x && v == 3));
if (v == 2) {
assert (t->extra < t->constructors_num);
t->constructors[t->extra ++] = c;
c->is_fun = 0;
} else {
assert (v == 3);
tl_function_insert_by_name (c);
c->is_fun = 1;
}
assert (read_combinator_left (c) >= 0);
assert (read_combinator_right (c) >= 0);
return c;
}
struct tl_type *read_types (void) {
struct tl_type *t = malloc0 (sizeof (*t));
t->name = get_int ();
t->id = get_string ();
2014-08-12 17:32:11 -04:00
t->print_id = strdup (gen_print_id (t->id));
assert (t->print_id);
2014-08-12 05:59:59 -04:00
t->constructors_num = get_int ();
assert (t->constructors_num >= 0 && t->constructors_num <= 1000);
t->constructors = malloc0 (sizeof (void *) * t->constructors_num);
t->flags = get_int ();
t->arity = get_int ();
t->params_types = get_long (); // params_types
t->extra = 0;
tl_type_insert_by_name (t);
return t;
}
2014-08-11 14:04:59 -04:00
int parse_tlo_file (void) {
buf_end = buf_ptr + (buf_size / 4);
assert (get_int () == TLS_SCHEMA_V2);
get_int (); // version
get_int (); // date
2014-08-12 05:59:59 -04:00
tn = 0;
fn = 0;
cn = 0;
int i;
tn = get_int ();
assert (tn >= 0 && tn < 10000);
tps = malloc0 (sizeof (void *) * tn);
if (verbosity >= 2) {
fprintf (stderr, "Found %d types\n", tn);
}
for (i = 0; i < tn; i++) {
assert (get_int () == TLS_TYPE);
tps[i] = read_types ();
assert (tps[i]);
}
cn = get_int ();
assert (cn >= 0);
if (verbosity >= 2) {
fprintf (stderr, "Found %d constructors\n", cn);
}
for (i = 0; i < cn; i++) {
assert (get_int () == TLS_COMBINATOR);
assert (read_combinators (2));
}
fn = get_int ();
assert (fn >= 0 && fn < 10000);
fns = malloc0 (sizeof (void *) * fn);
if (verbosity >= 2) {
fprintf (stderr, "Found %d functions\n", fn);
}
for (i = 0; i < fn; i++) {
assert (get_int () == TLS_COMBINATOR);
fns[i] = read_combinators (3);
assert (fns[i]);
}
assert (buf_ptr == buf_end);
int j;
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type")) {
tps[i]->name = 0;
for (j = 0; j < tps[i]->constructors_num; j ++) {
tps[i]->name ^= tps[i]->constructors[j]->name;
}
}
if (!header) {
printf ("#include \"auto.h\"\n");
printf ("#include <assert.h>\n");
printf ("#include \"auto-static.c\"\n");
for (i = 0; i < tn; i++) {
for (j = 0; j < tps[i]->constructors_num; j ++) {
2014-09-10 07:52:42 -04:00
gen_constructor_skip (tps[i]->constructors[j]);
gen_constructor_store (tps[i]->constructors[j]);
2014-08-12 05:59:59 -04:00
gen_constructor_fetch (tps[i]->constructors[j]);
2014-09-10 07:52:42 -04:00
gen_constructor_autocomplete (tps[i]->constructors[j]);
2014-08-12 05:59:59 -04:00
}
}
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type")) {
2014-09-10 07:52:42 -04:00
gen_type_skip (tps[i]);
gen_type_store (tps[i]);
2014-08-12 05:59:59 -04:00
gen_type_fetch (tps[i]);
2014-09-10 07:52:42 -04:00
gen_type_autocomplete (tps[i]);
gen_type_do_autocomplete (tps[i]);
}
for (i = 0; i < fn; i++) {
gen_function_store (fns[i]);
gen_function_autocomplete (fns[i]);
2014-08-12 05:59:59 -04:00
}
printf ("int skip_type_any (struct paramed_type *T) {\n");
printf (" switch (T->type->name) {\n");
2014-09-10 07:52:42 -04:00
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type") && tps[i]->name) {
2014-08-12 17:32:11 -04:00
printf (" case 0x%08x: return skip_type_%s (T);\n", tps[i]->name, tps[i]->print_id);
printf (" case 0x%08x: return skip_type_bare_%s (T);\n", ~tps[i]->name, tps[i]->print_id);
2014-08-12 05:59:59 -04:00
}
printf (" default: return -1; }\n");
printf ("}\n");
2014-09-10 07:52:42 -04:00
printf ("int store_type_any (struct paramed_type *T) {\n");
printf (" switch (T->type->name) {\n");
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type") && tps[i]->name) {
printf (" case 0x%08x: return store_type_%s (T);\n", tps[i]->name, tps[i]->print_id);
printf (" case 0x%08x: return store_type_bare_%s (T);\n", ~tps[i]->name, tps[i]->print_id);
}
printf (" default: return -1; }\n");
printf ("}\n");
printf ("int fetch_type_any (struct paramed_type *T) {\n");
printf (" switch (T->type->name) {\n");
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type") && tps[i]->name) {
printf (" case 0x%08x: return fetch_type_%s (T);\n", tps[i]->name, tps[i]->print_id);
printf (" case 0x%08x: return fetch_type_bare_%s (T);\n", ~tps[i]->name, tps[i]->print_id);
}
printf (" default: return -1; }\n");
printf ("}\n");
printf ("int autocomplete_type_any (struct paramed_type *T) {\n");
printf (" switch (T->type->name) {\n");
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type") && tps[i]->name) {
printf (" case 0x%08x: return autocomplete_type_%s (T);\n", tps[i]->name, tps[i]->print_id);
printf (" case 0x%08x: return autocomplete_type_bare_%s (T);\n", ~tps[i]->name, tps[i]->print_id);
}
printf (" default: return -1; }\n");
printf ("}\n");
printf ("struct paramed_type *store_function_any (void) {\n");
printf (" if (cur_token_len != 1 || *cur_token != '(') { return 0; }\n");
printf (" local_next_token ();\n");
printf (" if (cur_token_len == 1 || *cur_token == '.') { \n");
printf (" local_next_token ();\n");
printf (" if (cur_token_len != 1 || *cur_token != '=') { return 0; }\n");
printf (" local_next_token ();\n");
printf (" };\n");
printf (" if (cur_token_len < 0) { return 0; }\n");
for (i = 0; i < fn; i++) {
printf (" if (cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", (int)strlen (fns[i]->id), fns[i]->id);
printf (" out_int (0x%08x);\n", fns[i]->name);
printf (" local_next_token ();\n");
printf (" struct paramed_type *P = store_function_%s ();\n", fns[i]->print_id);
printf (" if (!P) { return 0; }\n");
printf (" if (cur_token_len != 1 || *cur_token != ')') { return 0; }\n");
printf (" local_next_token ();\n");
printf (" return P;\n");
printf (" }\n");
}
printf (" return 0;\n");
printf ("}\n");
printf ("int do_autocomplete_function (const char *text, int text_len, int index, char **R) {\n");
printf (" index ++;\n");
int i;
for (i = 0; i < fn; i++) {
printf (" if (index == %d) { if (!strncmp (text, \"%s\", text_len)) { *R = tstrdup (\"%s\"); return index; } else { index ++; }}\n", i, fns[i]->id, fns[i]->id);
}
printf (" *R = 0;\n");
printf (" return 0;\n");
printf ("}\n");
printf ("struct paramed_type *autocomplete_function_any (void) {\n");
printf (" expect_token_ptr_autocomplete (\"(\", 1);\n");
printf (" if (cur_token_len == -3) { set_autocomplete_type (do_autocomplete_function); }\n");
printf (" if (cur_token_len < 0) { return 0; }\n");
for (i = 0; i < fn; i++) {
printf (" if (cur_token_len == %d && !memcmp (cur_token, \"%s\", cur_token_len)) {\n", (int)strlen (fns[i]->id), fns[i]->id);
printf (" local_next_token ();\n");
printf (" struct paramed_type *P = autocomplete_function_%s ();\n", fns[i]->print_id);
printf (" if (!P) { return 0; }\n");
printf (" expect_token_ptr_autocomplete (\")\", 1);\n");
printf (" return P;\n");
printf (" }\n");
}
printf (" return 0;\n");
printf ("}\n");
2014-08-12 05:59:59 -04:00
} else {
for (i = 0; i < tn; i++) {
for (j = 0; j < tps[i]->constructors_num; j ++) {
2014-08-12 17:32:11 -04:00
printf ("int skip_constructor_%s (struct paramed_type *T);\n", tps[i]->constructors[j]->print_id);
2014-09-10 07:52:42 -04:00
printf ("int store_constructor_%s (struct paramed_type *T);\n", tps[i]->constructors[j]->print_id);
printf ("int fetch_constructor_%s (struct paramed_type *T);\n", tps[i]->constructors[j]->print_id);
printf ("int autocomplete_constructor_%s (struct paramed_type *T);\n", tps[i]->constructors[j]->print_id);
2014-08-12 05:59:59 -04:00
}
}
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type")) {
2014-08-12 17:32:11 -04:00
printf ("int skip_type_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int skip_type_bare_%s (struct paramed_type *T);\n", tps[i]->print_id);
2014-09-10 07:52:42 -04:00
printf ("int store_type_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int store_type_bare_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int fetch_type_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int fetch_type_bare_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int autocomplete_type_%s (struct paramed_type *T);\n", tps[i]->print_id);
printf ("int do_autocomplete_type_%s (const char *text, int len, int index, char **R);\n", tps[i]->print_id);
printf ("int autocomplete_type_bare_%s (struct paramed_type *T);\n", tps[i]->print_id);
}
for (i = 0; i < fn; i++) {
printf ("struct paramed_type *store_function_%s (void);\n", fns[i]->print_id);
printf ("struct paramed_type *autocomplete_function_%s (void);\n", fns[i]->print_id);
2014-08-12 05:59:59 -04:00
}
printf ("int skip_type_any (struct paramed_type *T);\n");
2014-09-10 07:52:42 -04:00
printf ("int store_type_any (struct paramed_type *T);\n");
printf ("int fetch_type_any (struct paramed_type *T);\n");
printf ("int autocomplete_type_any (struct paramed_type *T);\n");
printf ("struct paramed_type *store_function_any (void);\n");
printf ("struct paramed_type *autocomplete_function_any (void);\n");
2014-08-12 05:59:59 -04:00
/*for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#') {
printf ("extern struct tl_type tl_type_%s;\n", tps[i]->id);
}*/
for (i = 0; i < tn; i++) if (tps[i]->id[0] != '#' && strcmp (tps[i]->id, "Type")) {
2014-09-10 07:52:42 -04:00
printf ("static struct tl_type_descr tl_type_%s __attribute__ ((unused));\n", tps[i]->print_id);
printf ("static struct tl_type_descr tl_type_%s = {\n", tps[i]->print_id);
2014-08-12 05:59:59 -04:00
printf (" .name = 0x%08x,\n", tps[i]->name);
2014-09-10 07:52:42 -04:00
printf (" .id = \"%s\"\n,", tps[i]->id);
printf (" .params_num = %d,\n", tps[i]->arity);
printf (" .params_types = %lld\n", tps[i]->params_types);
2014-08-12 05:59:59 -04:00
printf ("};\n");
2014-09-10 07:52:42 -04:00
printf ("static struct tl_type_descr tl_type_bare_%s __attribute__ ((unused));\n", tps[i]->print_id);
printf ("static struct tl_type_descr tl_type_bare_%s = {\n", tps[i]->print_id);
2014-08-12 05:59:59 -04:00
printf (" .name = 0x%08x,\n", ~tps[i]->name);
2014-09-10 07:52:42 -04:00
printf (" .id = \"Bare_%s\",\n", tps[i]->id);
printf (" .params_num = %d,\n", tps[i]->arity);
printf (" .params_types = %lld\n", tps[i]->params_types);
2014-08-12 05:59:59 -04:00
printf ("};\n");
}
2014-08-11 14:04:59 -04:00
}
return 0;
}
void usage (void) {
printf ("usage: generate [-v] [-h] <tlo-file>\n"
);
exit (2);
}
void logprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2)));
void logprintf (const char *format __attribute__ ((unused)), ...) {
}
2014-08-20 21:56:53 -04:00
/*
2014-08-11 14:04:59 -04:00
void hexdump (int *in_ptr, int *in_end) {
int *ptr = in_ptr;
while (ptr < in_end) { printf (" %08x", *(ptr ++)); }
printf ("\n");
2014-08-20 21:56:53 -04:00
}*/
2014-08-11 14:04:59 -04:00
#ifdef HAVE_EXECINFO_H
void print_backtrace (void) {
void *buffer[255];
const int calls = backtrace (buffer, sizeof (buffer) / sizeof (void *));
backtrace_symbols_fd (buffer, calls, 1);
}
#else
void print_backtrace (void) {
if (write (1, "No libexec. Backtrace disabled\n", 32) < 0) {
// Sad thing
}
}
#endif
void sig_segv_handler (int signum __attribute__ ((unused))) {
if (write (1, "SIGSEGV received\n", 18) < 0) {
// Sad thing
}
print_backtrace ();
exit (EXIT_FAILURE);
}
void sig_abrt_handler (int signum __attribute__ ((unused))) {
if (write (1, "SIGABRT received\n", 18) < 0) {
// Sad thing
}
print_backtrace ();
exit (EXIT_FAILURE);
}
int main (int argc, char **argv) {
signal (SIGSEGV, sig_segv_handler);
signal (SIGABRT, sig_abrt_handler);
int i;
2014-08-12 05:59:59 -04:00
while ((i = getopt (argc, argv, "vhH")) != -1) {
2014-08-11 14:04:59 -04:00
switch (i) {
case 'h':
usage ();
return 2;
case 'v':
verbosity++;
break;
2014-08-12 05:59:59 -04:00
case 'H':
header ++;
break;
2014-08-11 14:04:59 -04:00
}
}
if (argc != optind + 1) {
usage ();
}
int fd = open (argv[optind], O_RDONLY);
if (fd < 0) {
fprintf (stderr, "Can not open file '%s'. Error %m\n", argv[optind]);
exit (1);
}
buf_size = read (fd, buf, (1 << 20));
if (fd == (1 << 20)) {
fprintf (stderr, "Too big tlo file\n");
exit (2);
}
return parse_tlo_file ();
}