X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fparser.h;h=1321f6cc8b4292948f2a793cba4f8184b9be33ea;hp=a39d15ecdd0255f72713f12fbfeea0fe80312ba0;hb=70136a34090807976d66b361fbc8963c0c91f17e;hpb=22b4a95d8fd6525e4539f843ba5bebb9a56e89f2 diff --git a/src/parser.h b/src/parser.h index a39d15e..1321f6c 100644 --- a/src/parser.h +++ b/src/parser.h @@ -14,6 +14,10 @@ typedef int token_t; +/* in php_psi.h */ +size_t psi_t_alignment(token_t); +size_t psi_t_size(token_t); + typedef struct PSI_Token { token_t type; unsigned line; @@ -29,10 +33,9 @@ typedef struct decl_type { } decl_type; static inline decl_type *init_decl_type(token_t type, char *name) { - decl_type *t = malloc(sizeof(*t)); + decl_type *t = calloc(1, sizeof(*t)); t->type = type; t->name = strdup(name); - t->real = NULL; return t; } @@ -273,10 +276,19 @@ static inline void free_decl_struct(decl_struct *s) { if (s->args) { free_decl_args(s->args); } + if (s->layout) { + free(s->layout); + } free(s->name); free(s); } +static inline size_t decl_struct_size(decl_struct *s) { + size_t c = s->args->count - 1; + decl_type *type = real_decl_type(s->args->args[c]->type); + return s->layout[c].pos + psi_t_alignment(type->type); +} + typedef struct decl_structs { size_t count; decl_struct **list; @@ -306,6 +318,7 @@ typedef union impl_val { char cval; short sval; int ival; + float fval; double dval; zend_long lval; zend_string *str;