flush
[m6w6/ext-psi] / src / types / impl_stmts.h
index f7b980df9ead5241130f276f50cebfaa80b0ddc9..a34627992bc1729086bf5277570b5165b4bd5bb3 100644 (file)
@@ -1,5 +1,32 @@
-#ifndef _PSI_TYPES_IMPL_STMTS_H
-#define _PSI_TYPES_IMPL_STMTS_H
+/*******************************************************************************
+ 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_STMTS_H
+#define PSI_TYPES_IMPL_STMTS_H
+
+#include "impl_stmt.h"
 
 typedef struct impl_stmts {
        struct {
@@ -20,56 +47,15 @@ typedef struct impl_stmts {
        } fre;
 } impl_stmts;
 
-static inline void *add_impl_stmt_ex(void *list, size_t count, void *stmt) {
-       list = realloc(list, count * sizeof(list));
-       ((void **)list)[count-1] = stmt;
-       return list;
-}
-
-static inline impl_stmts *add_impl_stmt(impl_stmts *stmts, impl_stmt *stmt) {
-       switch (stmt->type) {
-       case PSI_T_RETURN:
-               stmts->ret.list = add_impl_stmt_ex(stmts->ret.list, ++stmts->ret.count, stmt->s.ret);
-               break;
-       case PSI_T_LET:
-               stmts->let.list = add_impl_stmt_ex(stmts->let.list, ++stmts->let.count, stmt->s.let);
-               break;
-       case PSI_T_SET:
-               stmts->set.list = add_impl_stmt_ex(stmts->set.list, ++stmts->set.count, stmt->s.set);
-               break;
-       case PSI_T_FREE:
-               stmts->fre.list = add_impl_stmt_ex(stmts->fre.list, ++stmts->fre.count, stmt->s.fre);
-               break;
-       }
-       free(stmt);
-       return stmts;
-}
-
-static inline impl_stmts *init_impl_stmts(impl_stmt *stmt) {
-       impl_stmts *stmts = calloc(1, sizeof(*stmts));
-       return add_impl_stmt(stmts, stmt);
-}
+void *add_impl_stmt_ex(void *list, size_t count, void *stmt);
+impl_stmts *add_impl_stmt(impl_stmts *stmts, impl_stmt *stmt);
+impl_stmts *init_impl_stmts(impl_stmt *stmt);
+void free_impl_stmts(impl_stmts *stmts);
+void dump_impl_stmts(int fd, impl_stmts *stmts);
 
-static inline void free_impl_stmts(impl_stmts *stmts) {
-       size_t i;
+struct psi_data;
+struct impl;
 
-       for (i = 0; i < stmts->let.count; ++i) {
-               free_let_stmt(stmts->let.list[i]);
-       }
-       free(stmts->let.list);
-       for (i = 0; i < stmts->ret.count; ++i) {
-               free_return_stmt(stmts->ret.list[i]);
-       }
-       free(stmts->ret.list);
-       for (i = 0; i < stmts->set.count; ++i) {
-               free_set_stmt(stmts->set.list[i]);
-       }
-       free(stmts->set.list);
-       for (i = 0; i < stmts->fre.count; ++i) {
-               free_free_stmt(stmts->fre.list[i]);
-       }
-       free(stmts->fre.list);
-       free(stmts);
-}
+int validate_impl_stmts(struct psi_data *data, struct impl *impl);
 
 #endif