$36 GRAYBYTE WORDPRESS FILE MANAGER $20

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/php83/usr/include/php/Zend/

HOME
Current File : /opt/alt/php83/usr/include/php/Zend//zend_generators.h
/*
   +----------------------------------------------------------------------+
   | Zend Engine                                                          |
   +----------------------------------------------------------------------+
   | Copyright (c) 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          |
   | [email protected] so we can mail you a copy immediately.              |
   +----------------------------------------------------------------------+
   | Authors: Nikita Popov <[email protected]>                                |
   |          Bob Weinand <[email protected]>                           |
   +----------------------------------------------------------------------+
*/

#ifndef ZEND_GENERATORS_H
#define ZEND_GENERATORS_H

#include <stdint.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 *ht; /* if multiple children */
		zend_generator *single; /* if one child */
	} child;
	/* One generator can cache a direct pointer to the current root.
	 * The leaf member points back to the generator using the root cache. */
	union {
		zend_generator *leaf; /* if parent != NULL */
		zend_generator *root; /* if parent == NULL */
	} ptr;
};

struct _zend_generator {
	zend_object std;

	/* 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 */
	uint8_t flags;
};

static const uint8_t ZEND_GENERATOR_CURRENTLY_RUNNING = 0x1;
static const uint8_t ZEND_GENERATOR_FORCED_CLOSE      = 0x2;
static const uint8_t ZEND_GENERATOR_AT_FIRST_YIELD    = 0x4;
static const uint8_t ZEND_GENERATOR_DO_INIT           = 0x8;
static const uint8_t ZEND_GENERATOR_IN_FIBER          = 0x10;

void zend_register_generator_ce(void);
ZEND_API void zend_generator_close(zend_generator *generator, 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_API zend_generator *zend_generator_update_root(zend_generator *generator);
static zend_always_inline zend_generator *zend_generator_get_current(zend_generator *generator)
{
	if (EXPECTED(generator->node.parent == NULL)) {
		/* we're not in yield from mode */
		return generator;
	}

	zend_generator *root = generator->node.ptr.root;
	if (!root) {
		root = zend_generator_update_root(generator);
	}

	if (EXPECTED(root->execute_data)) {
		/* generator still running */
		return root;
	}

	return zend_generator_update_current(generator);
}

HashTable *zend_generator_frame_gc(zend_get_gc_buffer *gc_buffer, zend_generator *generator);

END_EXTERN_C()

#endif


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
8 Mar 2026 8.08 PM
root / linksafe
0755
Optimizer
--
19 Mar 2026 8.40 AM
root / linksafe
0755
zend.h
15.543 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_API.h
103.385 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_alloc.h
18.826 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_alloc_sizes.h
2.567 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_arena.h
5.921 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ast.h
13.027 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_atomic.h
5.57 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_attributes.h
5.528 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_attributes_arginfo.h
12.106 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_bitset.h
7.853 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_build.h
1.588 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_builtin_functions.h
1.478 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_builtin_functions_arginfo.h
13.857 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_call_stack.h
2.808 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_closures.h
2.236 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_closures_arginfo.h
2.035 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_compile.h
48.879 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_config.h
0.031 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_constants.h
6.549 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_constants_arginfo.h
1.832 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_cpuinfo.h
9.178 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_dtrace.h
2.003 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_enum.h
2.855 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_enum_arginfo.h
1.664 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_errors.h
2.344 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_exceptions.h
4.444 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_exceptions_arginfo.h
17.496 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_execute.h
22.214 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_extensions.h
6.203 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_fibers.h
5.041 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_fibers_arginfo.h
3.485 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_float.h
15.076 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_gc.h
4.559 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_gdb.h
1.387 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_generators.h
7.339 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_generators_arginfo.h
2.722 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_globals.h
9.522 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_globals_macros.h
2.744 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_hash.h
50.104 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_highlight.h
2.242 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_hrtime.h
3.752 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_inheritance.h
2.429 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ini.h
11.852 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ini_parser.h
2.688 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ini_scanner.h
1.856 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ini_scanner_defs.h
0.24 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_interfaces.h
4.021 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_interfaces_arginfo.h
7.841 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_istdiostream.h
1.501 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_iterators.h
3.697 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_language_parser.h
5.959 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_language_scanner.h
2.973 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_language_scanner_defs.h
0.303 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_list.h
3.401 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_llist.h
3.907 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_long.h
4.128 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_map_ptr.h
2.936 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_max_execution_timer.h
1.449 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_mmap.h
1.477 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_modules.h
4.713 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_multibyte.h
4.798 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_multiply.h
10.014 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_object_handlers.h
14.222 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_objects.h
1.771 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_objects_API.h
4.522 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_observer.h
6.248 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_operators.h
32.991 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_portability.h
23.861 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_ptr_stack.h
4.195 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_range_check.h
2.93 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_signal.h
3.979 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_smart_str.h
6.771 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_smart_str_public.h
1.132 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_smart_string.h
4.108 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_smart_string_public.h
1.211 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_sort.h
1.499 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_stack.h
2.354 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_stream.h
3.531 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_string.h
21.882 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_strtod.h
2.101 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_strtod_int.h
3.062 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_system_id.h
1.371 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_type_info.h
4.438 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_types.h
51.112 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_variables.h
2.993 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_virtual_cwd.h
12.843 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm.h
1.947 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_def.h
286.481 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_execute.h
2.06 MB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_handlers.h
90.046 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_opcodes.h
12.421 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_trace_handlers.h
3.141 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_trace_lines.h
1.714 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_vm_trace_map.h
2.603 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_weakrefs.h
3.15 KB
8 Mar 2026 8.08 PM
root / linksafe
0644
zend_weakrefs_arginfo.h
3.397 KB
8 Mar 2026 8.08 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF