X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fparser.h;h=1321f6cc8b4292948f2a793cba4f8184b9be33ea;hp=ce74067db65a94d4ba3f6c9f458a1fda5a3504b8;hb=70136a34090807976d66b361fbc8963c0c91f17e;hpb=7e5e4c6d2b654cfd3737c37e9e1894be43642721 diff --git a/src/parser.h b/src/parser.h index ce74067..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; @@ -25,13 +29,13 @@ typedef struct decl_type { char *name; token_t type; struct decl_type *real; + struct decl_struct *strct; } 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; } @@ -70,7 +74,7 @@ typedef struct decl_typedefs { decl_typedef **list; } decl_typedefs; -static decl_typedefs *add_decl_typedef(decl_typedefs *defs, decl_typedef *def) { +static inline decl_typedefs *add_decl_typedef(decl_typedefs *defs, decl_typedef *def) { if (!defs) { defs = calloc(1, sizeof(*defs)); } @@ -92,13 +96,15 @@ static void free_decl_typedefs(decl_typedefs *defs) { typedef struct decl_var { char *name; unsigned pointer_level; + unsigned array_size; struct decl_arg *arg; } decl_var; -static inline decl_var *init_decl_var(char *name, unsigned pl) { +static inline decl_var *init_decl_var(char *name, unsigned pl, unsigned as) { decl_var *v = malloc(sizeof(*v)); v->name = (char *) strdup((const char *) name); v->pointer_level = pl; + v->array_size = as; return v; } @@ -218,7 +224,9 @@ static inline decl* init_decl(decl_abi *abi, decl_arg *func, decl_args *args) { static inline void free_decl(decl *d) { free_decl_abi(d->abi); free_decl_arg(d->func); - free_decl_args(d->args); + if (d->args) { + free_decl_args(d->args); + } free(d); } @@ -246,11 +254,71 @@ static inline void free_decls(decls *decls) { free(decls); } +typedef struct decl_struct_layout { + size_t pos; + size_t len; +} decl_struct_layout; + +typedef struct decl_struct { + char *name; + decl_args *args; + decl_struct_layout *layout; +} decl_struct; + +static inline decl_struct *init_decl_struct(char *name, decl_args *args) { + decl_struct *s = calloc(1, sizeof(*s)); + s->name = strdup(name); + s->args = args; + return s; +} + +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; +} decl_structs; + +static inline decl_structs *add_decl_struct(decl_structs *ss, decl_struct *s) { + if (!ss) { + ss = calloc(1, sizeof(*ss)); + } + ss->list = realloc(ss->list, ++ss->count * sizeof(*ss->list)); + ss->list[ss->count-1] = s; + return ss; +} + +static inline void free_decl_structs(decl_structs *ss) { + size_t i; + + for (i = 0; i < ss->count; ++i) { + free_decl_struct(ss->list[i]); + } + free(ss->list); + free(ss); +} + typedef union impl_val { unsigned char bval; char cval; short sval; int ival; + float fval; double dval; zend_long lval; zend_string *str; @@ -403,12 +471,14 @@ static inline void free_impl_func(impl_func *f) { typedef struct let_func { token_t type; char *name; + size_t size; } let_func; -static inline let_func *init_let_func(token_t type, char *name) { +static inline let_func *init_let_func(token_t type, char *name, size_t size) { let_func *func = malloc(sizeof(*func)); func->type = type; - func->name = (char *) strdup((const char *) name); + func->name = strdup(name); + func->size = size; return func; } @@ -459,7 +529,9 @@ static inline let_stmt *init_let_stmt(decl_var *var, let_value *val) { static inline void free_let_stmt(let_stmt *stmt) { free_decl_var(stmt->var); - free_let_value(stmt->val); + if (stmt->val) { + free_let_value(stmt->val); + } free(stmt); } @@ -681,7 +753,7 @@ typedef struct impls { impl **list; } impls; -static impls *add_impl(impls *impls, impl *impl) { +static inline impls *add_impl(impls *impls, impl *impl) { if (!impls) { impls = calloc(1, sizeof(*impls)); } @@ -769,6 +841,7 @@ typedef void (*psi_error_cb)(int type, const char *msg, ...); #define PSI_DATA_MEMBERS \ constants *consts; \ decl_typedefs *defs; \ + decl_structs *structs; \ decls *decls; \ impls *impls; \ char *lib; \ @@ -790,6 +863,9 @@ static inline void PSI_DataDtor(PSI_Data *data) { if (data->defs) { free_decl_typedefs(data->defs); } + if (data->structs) { + free_decl_structs(data->structs); + } if (data->decls) { free_decls(data->decls); }