Merge branch 'slimconfigure'
[m6w6/ext-psi] / src / types / impl_arg.h
index 4f870e0f96c7a1a756eecef72d4a475c88487fac..d3e470a53131f99685076b757faab3bb72f92415 100644 (file)
@@ -1,38 +1,45 @@
-#ifndef _PSI_TYPES_IMPL_ARG_H
-#define _PSI_TYPES_IMPL_ARG_H
-
-typedef struct impl_arg {
-       impl_type *type;
-       impl_var *var;
-       impl_def_val *def;
-       impl_val val;
-       zval *_zv;
-} impl_arg;
-
-typedef struct impl_vararg {
-       impl_arg *name;
-       struct impl_args *args;
-       token_t *types;
-       impl_val *values;
-       void **free_list;
-} impl_vararg;
-
-static inline impl_arg *init_impl_arg(impl_type *type, impl_var *var, impl_def_val *def) {
-       impl_arg *arg = calloc(1, sizeof(*arg));
-       arg->type = type;
-       arg->var = var;
-       arg->var->arg = arg;
-       arg->def = def;
-       return arg;
-}
-
-static inline void free_impl_arg(impl_arg *arg) {
-       free_impl_type(arg->type);
-       free_impl_var(arg->var);
-       if (arg->def) {
-               free_impl_def_val(arg->def);
-       }
-       free(arg);
-}
+/*******************************************************************************
+ Copyright (c) 2016, Michael Wallner <mike@php.net>.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+     * Redistributions of source code must retain the above copyright notice,
+       this list of conditions and the following disclaimer.
+     * Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*******************************************************************************/
+
+#ifndef PSI_TYPES_IMPL_ARG_H
+#define PSI_TYPES_IMPL_ARG_H
+
+#include "token.h"
+
+struct psi_impl_type;
+struct psi_impl_var;
+struct psi_impl_def_val;
+
+struct psi_impl_arg {
+       struct psi_impl_type *type;
+       struct psi_impl_var *var;
+       struct psi_impl_def_val *def;
+};
+
+struct psi_impl_arg *psi_impl_arg_init(struct psi_impl_type *type, struct psi_impl_var *var, struct psi_impl_def_val *def);
+void psi_impl_arg_free(struct psi_impl_arg **arg_ptr);
+void psi_impl_arg_dump(int fd, struct psi_impl_arg *iarg, bool vararg);
 
 #endif