php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
zend_accelerator_hash.h
Go to the documentation of this file.
1/*
2 +----------------------------------------------------------------------+
3 | Zend OPcache |
4 +----------------------------------------------------------------------+
5 | Copyright (c) The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | https://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Authors: Andi Gutmans <andi@php.net> |
16 | Zeev Suraski <zeev@php.net> |
17 | Stanislav Malyshev <stas@zend.com> |
18 | Dmitry Stogov <dmitry@php.net> |
19 +----------------------------------------------------------------------+
20*/
21
22#ifndef ZEND_ACCELERATOR_HASH_H
23#define ZEND_ACCELERATOR_HASH_H
24
25#include "zend.h"
26
27/*
28 zend_accel_hash - is a hash table allocated in shared memory and
29 distributed across simultaneously running processes. The hash tables have
30 fixed sizen selected during construction by zend_accel_hash_init(). All the
31 hash entries are preallocated in the 'hash_entries' array. 'num_entries' is
32 initialized by zero and grows when new data is added.
33 zend_accel_hash_update() just takes the next entry from 'hash_entries'
34 array and puts it into appropriate place of 'hash_table'.
35 Hash collisions are resolved by separate chaining with linked lists,
36 however, entries are still taken from the same 'hash_entries' array.
37 'key' and 'data' passed to zend_accel_hash_update() must be already
38 allocated in shared memory. Few keys may be resolved to the same data.
39 using 'indirect' entries, that point to other entries ('data' is actually
40 a pointer to another zend_accel_hash_entry).
41 zend_accel_hash_update() requires exclusive lock, however,
42 zend_accel_hash_find() does not.
43*/
44
46
54
62
64
65void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size);
67
69 zend_accel_hash *accel_hash,
71 bool indirect,
72 void *data);
73
75 zend_accel_hash *accel_hash,
77
79 zend_accel_hash *accel_hash,
81
83 zend_accel_hash *accel_hash,
85
86static inline bool zend_accel_hash_is_full(zend_accel_hash *accel_hash)
87{
88 if (accel_hash->num_entries == accel_hash->max_num_entries) {
89 return 1;
90 } else {
91 return 0;
92 }
93}
94
96
97#endif /* ZEND_ACCELERATOR_HASH_H */
unsigned char key[REFLECTION_KEY_LEN]
zend_constant * data
void * data
zend_ulong hash_value
zend_accel_hash_entry * next
zend_string * key
bool indirect
zend_accel_hash_entry * hash_entries
zend_accel_hash_entry ** hash_table
void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size)
zend_accel_hash_entry * zend_accel_hash_find_entry(zend_accel_hash *accel_hash, zend_string *key)
void * zend_accel_hash_find(zend_accel_hash *accel_hash, zend_string *key)
int zend_accel_hash_unlink(zend_accel_hash *accel_hash, zend_string *key)
zend_accel_hash_entry * zend_accel_hash_update(zend_accel_hash *accel_hash, zend_string *key, bool indirect, void *data)
void zend_accel_hash_clean(zend_accel_hash *accel_hash)
struct _zend_accel_hash zend_accel_hash
struct _zend_accel_hash_entry zend_accel_hash_entry
ZEND_API void(ZEND_FASTCALL *zend_touch_vm_stack_data)(void *vm_stack_data)
uint32_t zend_ulong
Definition zend_long.h:43
struct _zend_string zend_string
#define END_EXTERN_C()
#define BEGIN_EXTERN_C()