]> granicus.if.org Git - php/commitdiff
Remove zend_dynamic_array
authorNikita Popov <nikic@php.net>
Mon, 22 Sep 2014 21:39:07 +0000 (23:39 +0200)
committerNikita Popov <nikic@php.net>
Mon, 22 Sep 2014 21:45:13 +0000 (23:45 +0200)
This was introduced back in 2000 to test a new hashtable
implementation and is no longer used.

Zend/Makefile.am
Zend/Zend.dsp
Zend/ZendTS.dsp
Zend/zend_dynamic_array.c [deleted file]
Zend/zend_dynamic_array.h [deleted file]
configure.in
win32/build/config.w32

index 65c4113497ba5abadfffb1fcf7a8bb9bdeaf4305..2a76db36b15593fc6ef6235cb0ed997a20079cf3 100644 (file)
@@ -8,7 +8,7 @@ noinst_LTLIBRARIES=libZend.la
 libZend_la_SOURCES=\
        zend_language_parser.y zend_language_scanner.l \
        zend_ini_parser.y zend_ini_scanner.l \
-       zend_alloc.c zend_compile.c zend_constants.c zend_dynamic_array.c \
+       zend_alloc.c zend_compile.c zend_constants.c \
        zend_execute.c zend_execute_API.c zend_highlight.c zend_llist.c \
        zend_vm_opcodes.c zend_opcode.c zend_operators.c zend_ptr_stack.c zend_stack.c \
        zend_variables.c zend.c zend_API.c zend_extensions.c zend_hash.c \
index c1b3f2a9f7f462f8552577f7cdf2032b9ff8b769..717580c5a39f44825120d818c1b8efa5d8c481fd 100644 (file)
@@ -143,10 +143,6 @@ SOURCE=.\zend_default_classes.c
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=.\zend_dynamic_array.c\r
-# End Source File\r
-# Begin Source File\r
-\r
 SOURCE=.\zend_execute.c\r
 # End Source File\r
 # Begin Source File\r
index 4c6ef924652a23554f9e0eecca8737681eb7d09f..d452221d3a086ebcbebfd200c5966accee3bf73a 100644 (file)
@@ -168,10 +168,6 @@ SOURCE=.\zend_default_classes.c
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=.\zend_dynamic_array.c\r
-# End Source File\r
-# Begin Source File\r
-\r
 SOURCE=.\zend_exceptions.c\r
 # End Source File\r
 # Begin Source File\r
diff --git a/Zend/zend_dynamic_array.c b/Zend/zend_dynamic_array.c
deleted file mode 100644 (file)
index db81b00..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
-   +----------------------------------------------------------------------+
-   | Zend Engine                                                          |
-   +----------------------------------------------------------------------+
-   | Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
-   +----------------------------------------------------------------------+
-   | This source file is subject to version 2.00 of the Zend license,     |
-   | that is bundled with this package in the file LICENSE, and is        | 
-   | available through the world-wide-web at the following url:           |
-   | http://www.zend.com/license/2_00.txt.                                |
-   | If you did not receive a copy of the Zend license and are unable to  |
-   | obtain it through the world-wide-web, please send a note to          |
-   | license@zend.com so we can mail you a copy immediately.              |
-   +----------------------------------------------------------------------+
-   | Authors: Andi Gutmans <andi@zend.com>                                |
-   |          Zeev Suraski <zeev@zend.com>                                |
-   +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#include "zend.h"
-
-typedef struct _dynamic_array {
-        char *array;
-        unsigned int element_size;
-        unsigned int current;
-        unsigned int allocated;
-} dynamic_array;
-
-ZEND_API int zend_dynamic_array_init(dynamic_array *da, unsigned int element_size, unsigned int size)
-{
-       da->element_size = element_size;
-       da->allocated = size;
-       da->current = 0;
-       da->array = (char *) emalloc(size*element_size);
-       if (da->array == NULL) {
-               return 1;
-       }
-       return 0;
-}
-
-ZEND_API void *zend_dynamic_array_push(dynamic_array *da)
-{
-       if (da->current == da->allocated) {
-               da->allocated *= 2;
-               da->array = (char *) erealloc(da->array, da->allocated*da->element_size);
-       }
-       return (void *)(da->array+(da->current++)*da->element_size);
-}
-
-ZEND_API void *zend_dynamic_array_pop(dynamic_array *da)
-{
-       return (void *)(da->array+(--(da->current))*da->element_size);
-
-}
-
-ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index)
-{
-       if (index >= da->current) {
-               return NULL;
-       }
-       return (void *)(da->array+index*da->element_size);
-}
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * indent-tabs-mode: t
- * End:
- */
diff --git a/Zend/zend_dynamic_array.h b/Zend/zend_dynamic_array.h
deleted file mode 100644 (file)
index e69eb18..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-   +----------------------------------------------------------------------+
-   | Zend Engine                                                          |
-   +----------------------------------------------------------------------+
-   | Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
-   +----------------------------------------------------------------------+
-   | This source file is subject to version 2.00 of the Zend license,     |
-   | that is bundled with this package in the file LICENSE, and is        | 
-   | available through the world-wide-web at the following url:           |
-   | http://www.zend.com/license/2_00.txt.                                |
-   | If you did not receive a copy of the Zend license and are unable to  |
-   | obtain it through the world-wide-web, please send a note to          |
-   | license@zend.com so we can mail you a copy immediately.              |
-   +----------------------------------------------------------------------+
-   | Authors: Andi Gutmans <andi@zend.com>                                |
-   |          Zeev Suraski <zeev@zend.com>                                |
-   +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#ifndef ZEND_DYNAMIC_ARRAY_H
-#define ZEND_DYNAMIC_ARRAY_H
-
-typedef struct _dynamic_array {
-       char *array;
-       unsigned int element_size;
-       unsigned int last_used;
-       unsigned int allocated;
-} dynamic_array;
-
-BEGIN_EXTERN_C()
-ZEND_API int zend_dynamic_array_init(dynamic_array *da, unsigned int element_size, unsigned int size);
-ZEND_API void *zend_dynamic_array_push(dynamic_array *da);
-ZEND_API void *zend_dynamic_array_pop(dynamic_array *da);
-ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index);
-END_EXTERN_C()
-
-#endif /* ZEND_DYNAMIC_ARRAY_H */
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * indent-tabs-mode: t
- * End:
- */
index 38b32a5eafa57ee0e7d2caf97a5c057552c07bb2..f947d2f9debaa26d25da2cc2eb2efbd995345246 100644 (file)
@@ -1482,7 +1482,7 @@ esac
 PHP_ADD_SOURCES(Zend, \
     zend_language_parser.c zend_language_scanner.c \
     zend_ini_parser.c zend_ini_scanner.c \
-    zend_alloc.c zend_compile.c zend_constants.c zend_dynamic_array.c zend_dtrace.c \
+    zend_alloc.c zend_compile.c zend_constants.c zend_dtrace.c \
     zend_execute_API.c zend_highlight.c zend_llist.c \
     zend_vm_opcodes.c zend_opcode.c zend_operators.c zend_ptr_stack.c zend_stack.c \
     zend_variables.c zend.c zend_API.c zend_extensions.c zend_hash.c \
index 82378b536d0c9c101b8c5d4d9b55ef8628f1a864..580634351829cf84ed85318d01d2a941db2a013b 100644 (file)
@@ -353,7 +353,7 @@ STDOUT.WriteLine("PHP Core:  " + get_define('PHPDLL') + " and " + get_define('PH
 
 ADD_SOURCES("Zend", "zend_language_parser.c zend_language_scanner.c \
        zend_ini_parser.c zend_ini_scanner.c zend_alloc.c zend_compile.c \
-       zend_constants.c zend_dynamic_array.c zend_exceptions.c \
+       zend_constants.c zend_exceptions.c \
        zend_execute_API.c zend_highlight.c \
        zend_llist.c zend_vm_opcodes.c zend_opcode.c zend_operators.c zend_ptr_stack.c \
        zend_stack.c zend_variables.c zend.c zend_API.c zend_extensions.c \