X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fparser.h;h=f56f278eaf86257b91b8ebe973ea581d18999765;hp=62f5e31eb0bb2f79bedb4d94540ba9e309cc368c;hb=bcd9e150292290ce2951fdca61fad526c478e787;hpb=6e8b5c090b44299f82f4e748d8bf6b8bc5b66414 diff --git a/src/parser.h b/src/parser.h index 62f5e31..f56f278 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; @@ -276,6 +280,12 @@ static inline void free_decl_struct(decl_struct *s) { 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; @@ -305,6 +315,7 @@ typedef union impl_val { char cval; short sval; int ival; + float fval; double dval; zend_long lval; zend_string *str;