X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fparser.h;h=737524fb4cbece4f2fe66dd7f79d18f7c20b3846;hb=b4508f6b917660970f887894a6aaed6c220a2c72;hp=67252e24855b9aa5cae8c0a68c01def1e2587d3b;hpb=d560a27ff8431c678d25ecf4d8190b562a766f41;p=m6w6%2Fext-psi diff --git a/src/parser.h b/src/parser.h index 67252e2..737524f 100644 --- a/src/parser.h +++ b/src/parser.h @@ -234,7 +234,12 @@ typedef struct decl { decl_abi *abi; decl_arg *func; decl_args *args; - void *dlptr; + struct impl *impl; + struct { + void *sym; + void *info; + void **args; + } call; } decl; static inline decl* init_decl(decl_abi *abi, decl_arg *func, decl_args *args) { @@ -326,12 +331,16 @@ static inline void free_decl_structs(decl_structs *ss) { typedef union impl_val { char cval; int8_t i8; + uint8_t u8; short sval; int16_t i16; + uint16_t u16; int ival; int32_t i32; + uint32_t u32; long lval; int64_t i64; + uint64_t u64; float fval; double dval; union { @@ -346,7 +355,7 @@ typedef union impl_val { static inline impl_val *deref_impl_val(impl_val *ret_val, decl_var *var) { unsigned i; - if (var->arg->var != var) for (i = 0; i < var->pointer_level; ++i) { + if (var->arg->var != var) for (i = 1; i < var->pointer_level; ++i) { ret_val = *(void **) ret_val; } return ret_val; @@ -359,7 +368,7 @@ static inline impl_val *enref_impl_val(void *ptr, decl_var *var) { if (!var->pointer_level && real_decl_type(var->arg->type)->type != PSI_T_STRUCT) { return ptr; } - val = val_ptr = calloc(var->pointer_level, sizeof(void *)); + val = val_ptr = calloc(var->pointer_level + 1, sizeof(void *)); for (i = 1; i < var->pointer_level; ++i) { val_ptr->ptr = (void **) val_ptr + 1; val_ptr = val_ptr->ptr; @@ -590,7 +599,7 @@ struct set_value; typedef struct set_func { token_t type; char *name; - void (*handler)(zval *, token_t, impl_val *, struct set_value *set, decl_var *); + void (*handler)(zval *, struct set_value *set, impl_val *ret_val); } set_func; static inline set_func *init_set_func(token_t type, const char *name) { @@ -608,6 +617,10 @@ static inline void free_set_func(set_func *func) { typedef struct set_value { set_func *func; decl_vars *vars; + struct { + struct set_value *set; + impl_val *val; + } outer; struct set_value **inner; size_t count; } set_value;