2014-11-10 06:08:07 +00:00
|
|
|
/* {{{ var object helpers */
|
2014-11-10 11:07:01 +00:00
|
|
|
#ifdef ZEND_ENGINE_2
|
2014-11-11 18:27:44 +00:00
|
|
|
xc_vector_t objects; /* in calc */
|
2014-11-10 06:08:07 +00:00
|
|
|
HashTable handle_to_index; /* in calc/store only */
|
2014-11-11 18:27:44 +00:00
|
|
|
zend_object_handle *object_handles; /* in restore only */
|
2014-11-10 11:07:01 +00:00
|
|
|
#endif
|
2014-11-10 06:08:07 +00:00
|
|
|
const xc_entry_var_t *entry_var_src; /* in restore */
|
|
|
|
|
|
|
|
xc_vector_t class_names; /* in calc only */
|
|
|
|
HashTable class_name_to_index; /* in calc/store only */
|
2014-11-10 09:07:27 +00:00
|
|
|
zend_class_entry **index_to_ce; /* in restore only */
|
2014-11-10 06:08:07 +00:00
|
|
|
/* }}} */
|