2008-01-22 17:29:29 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2015-01-15 23:27:30 +08:00
|
|
|
| Copyright (c) 1998-2015 Zend Technologies Ltd. (http://www.zend.com) |
|
2008-01-22 17:29:29 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| 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: David Wang <planetbeing@gmail.com> |
|
|
|
|
| Dmitry Stogov <dmitry@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef ZEND_GC_H
|
|
|
|
#define ZEND_GC_H
|
|
|
|
|
|
|
|
#ifndef GC_BENCH
|
|
|
|
# define GC_BENCH 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if GC_BENCH
|
|
|
|
# define GC_BENCH_INC(counter) GC_G(counter)++
|
|
|
|
# define GC_BENCH_DEC(counter) GC_G(counter)--
|
|
|
|
# define GC_BENCH_PEAK(peak, counter) do { \
|
|
|
|
if (GC_G(counter) > GC_G(peak)) { \
|
|
|
|
GC_G(peak) = GC_G(counter); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
# define GC_BENCH_INC(counter)
|
|
|
|
# define GC_BENCH_DEC(counter)
|
|
|
|
# define GC_BENCH_PEAK(peak, counter)
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define GC_COLOR 0xc000
|
2008-01-22 17:29:29 +08:00
|
|
|
|
2014-02-10 14:04:30 +08:00
|
|
|
#define GC_BLACK 0x0000
|
|
|
|
#define GC_WHITE 0x8000
|
|
|
|
#define GC_GREY 0x4000
|
|
|
|
#define GC_PURPLE 0xc000
|
2008-01-22 17:29:29 +08:00
|
|
|
|
|
|
|
#define GC_ADDRESS(v) \
|
2014-02-10 14:04:30 +08:00
|
|
|
((v) & ~GC_COLOR)
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_SET_ADDRESS(v, a) \
|
2014-02-10 14:04:30 +08:00
|
|
|
do {(v) = ((v) & GC_COLOR) | (a);} while (0)
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_GET_COLOR(v) \
|
|
|
|
(((zend_uintptr_t)(v)) & GC_COLOR)
|
|
|
|
#define GC_SET_COLOR(v, c) \
|
2014-02-10 14:04:30 +08:00
|
|
|
do {(v) = ((v) & ~GC_COLOR) | (c);} while (0)
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_SET_BLACK(v) \
|
2014-02-10 14:04:30 +08:00
|
|
|
do {(v) = (v) & ~GC_COLOR;} while (0)
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_SET_PURPLE(v) \
|
2014-02-10 14:04:30 +08:00
|
|
|
do {(v) = (v) | GC_COLOR;} while (0)
|
2008-01-22 17:29:29 +08:00
|
|
|
|
|
|
|
#define GC_ZVAL_ADDRESS(v) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_ADDRESS(Z_GC_INFO_P(v))
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_ZVAL_SET_ADDRESS(v, a) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_SET_ADDRESS(Z_GC_INFO_P(v), (a))
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_ZVAL_GET_COLOR(v) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_GET_COLOR(Z_GC_INFO_P(v))
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_ZVAL_SET_COLOR(v, c) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_SET_COLOR(Z_GC_INFO_P(v), (c))
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_ZVAL_SET_BLACK(v) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_SET_BLACK(Z_GC_INFO_P(v))
|
2008-01-22 17:29:29 +08:00
|
|
|
#define GC_ZVAL_SET_PURPLE(v) \
|
2014-03-19 21:00:28 +08:00
|
|
|
GC_SET_PURPLE(Z_GC_INFO_P(v))
|
2008-01-22 17:29:29 +08:00
|
|
|
|
|
|
|
typedef struct _gc_root_buffer {
|
2014-02-10 14:04:30 +08:00
|
|
|
zend_refcounted *ref;
|
2014-08-07 22:50:03 +08:00
|
|
|
struct _gc_root_buffer *next; /* double-linked list */
|
|
|
|
struct _gc_root_buffer *prev;
|
2014-08-26 01:28:33 +08:00
|
|
|
uint32_t refcount;
|
2008-01-22 17:29:29 +08:00
|
|
|
} gc_root_buffer;
|
|
|
|
|
|
|
|
typedef struct _zend_gc_globals {
|
|
|
|
zend_bool gc_enabled;
|
2008-01-29 17:59:53 +08:00
|
|
|
zend_bool gc_active;
|
2014-09-13 01:52:47 +08:00
|
|
|
zend_bool gc_full;
|
2008-01-22 17:29:29 +08:00
|
|
|
|
|
|
|
gc_root_buffer *buf; /* preallocated arrays of buffers */
|
|
|
|
gc_root_buffer roots; /* list of possible roots of cycles */
|
|
|
|
gc_root_buffer *unused; /* list of unused buffers */
|
2008-04-12 01:32:18 +08:00
|
|
|
gc_root_buffer *first_unused; /* pointer to first unused buffer */
|
|
|
|
gc_root_buffer *last_unused; /* pointer to last unused buffer */
|
2008-01-22 17:29:29 +08:00
|
|
|
|
2014-03-19 21:00:28 +08:00
|
|
|
gc_root_buffer to_free; /* list to free */
|
|
|
|
gc_root_buffer *next_to_free;
|
2008-01-22 17:29:29 +08:00
|
|
|
|
2014-08-26 01:28:33 +08:00
|
|
|
uint32_t gc_runs;
|
|
|
|
uint32_t collected;
|
2008-01-22 17:29:29 +08:00
|
|
|
|
|
|
|
#if GC_BENCH
|
2014-08-26 01:28:33 +08:00
|
|
|
uint32_t root_buf_length;
|
|
|
|
uint32_t root_buf_peak;
|
|
|
|
uint32_t zval_possible_root;
|
|
|
|
uint32_t zval_buffered;
|
|
|
|
uint32_t zval_remove_from_buffer;
|
|
|
|
uint32_t zval_marked_grey;
|
2008-01-22 17:29:29 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
} zend_gc_globals;
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
BEGIN_EXTERN_C()
|
reworked the patch, less new stuff but worky
TLS is already used in TSRM, the way exporting the tsrm cache through
a thread local variable is not portable. Additionally, the current
patch suffers from bugs which are hard to find, but prevent it to
be worky with apache. What is done here is mainly uses the idea
from the RFC patch, but
- __thread variable is removed
- offset math and declarations are removed
- extra macros and definitions are removed
What is done merely is
- use an inline function to access the tsrm cache. The function uses
the portable tsrm_tls_get macro which is cheap
- all the TSRM_* macros are set to placebo. Thus this opens the way
remove them later
Except that, the logic is old. TSRMLS_FETCH will have to be done once
per thread, then tsrm_get_ls_cache() can be used. Things seeming to be
worky are cli, cli server and apache. I also tried to enable bz2
shared and it has worked out of the box. The change is yet minimal
diffing to the current master bus is a worky start, IMHO. Though will
have to recheck the other previously done SAPIs - embed and cgi.
The offsets can be added to the tsrm_resource_type struct, then
it'll not be needed to declare them in the userspace. Even the
"done" member type can be changed to int16 or smaller, then adding
the offset as int16 will not change the struct size. As well on the
todo might be removing the hashed storage, thread_id != thread_id and
linked list logic in favour of the explicit TLS operations.
2014-09-26 00:48:27 +08:00
|
|
|
ZEND_API extern int gc_globals_id;
|
2008-01-22 17:29:29 +08:00
|
|
|
END_EXTERN_C()
|
2014-10-02 04:04:21 +08:00
|
|
|
#define GC_G(v) ZEND_TSRMG(gc_globals_id, zend_gc_globals *, v)
|
2008-01-22 17:29:29 +08:00
|
|
|
#else
|
|
|
|
#define GC_G(v) (gc_globals.v)
|
|
|
|
extern ZEND_API zend_gc_globals gc_globals;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
BEGIN_EXTERN_C()
|
2014-12-03 04:18:18 +08:00
|
|
|
ZEND_API extern int (*gc_collect_cycles)(void);
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void gc_possible_root(zend_refcounted *ref);
|
|
|
|
ZEND_API void gc_remove_from_buffer(zend_refcounted *ref);
|
|
|
|
ZEND_API void gc_globals_ctor(void);
|
|
|
|
ZEND_API void gc_globals_dtor(void);
|
|
|
|
ZEND_API void gc_init(void);
|
|
|
|
ZEND_API void gc_reset(void);
|
2014-12-03 04:18:18 +08:00
|
|
|
|
|
|
|
/* The default implementation of the gc_collect_cycles callback. */
|
|
|
|
ZEND_API int zend_gc_collect_cycles(void);
|
2008-01-22 17:29:29 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
|
|
|
#define GC_ZVAL_CHECK_POSSIBLE_ROOT(z) \
|
2014-12-14 06:06:14 +08:00
|
|
|
gc_check_possible_root((z))
|
2008-01-22 17:29:29 +08:00
|
|
|
|
2014-03-19 21:00:28 +08:00
|
|
|
#define GC_REMOVE_FROM_BUFFER(p) do { \
|
|
|
|
zend_refcounted *_p = (zend_refcounted*)(p); \
|
2014-04-02 18:34:44 +08:00
|
|
|
if (GC_ADDRESS(GC_INFO(_p))) { \
|
2014-12-14 06:06:14 +08:00
|
|
|
gc_remove_from_buffer(_p); \
|
2014-02-10 14:04:30 +08:00
|
|
|
} \
|
2008-01-22 17:29:29 +08:00
|
|
|
} while (0)
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static zend_always_inline void gc_check_possible_root(zval *z)
|
2008-01-22 17:29:29 +08:00
|
|
|
{
|
2014-04-03 19:26:23 +08:00
|
|
|
ZVAL_DEREF(z);
|
2015-01-23 21:37:39 +08:00
|
|
|
if (Z_COLLECTABLE_P(z) && UNEXPECTED(!Z_GC_INFO_P(z))) {
|
2014-12-14 06:06:14 +08:00
|
|
|
gc_possible_root(Z_COUNTED_P(z));
|
2008-01-22 17:29:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ZEND_GC_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|