-
-
Notifications
You must be signed in to change notification settings - Fork 466
/
memory.c
665 lines (564 loc) · 19 KB
/
memory.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
/*
+------------------------------------------------------------------------+
| Zephir Language |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2017 Zephir Team (http://www.zephir-lang.com) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file docs/LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Authors: Andres Gutierrez <[email protected]> |
| Eduar Carvajal <[email protected]> |
| Vladimir Kolesnikov <[email protected]> |
+------------------------------------------------------------------------+
*/
#include "php.h"
#include "php_ext.h"
#include "kernel/memory.h"
#include <Zend/zend_alloc.h>
#include "kernel/fcall.h"
#include "kernel/backtrace.h"
/*
* Memory Frames/Virtual Symbol Scopes
*------------------------------------
*
* Zephir uses memory frames to track the variables used within a method
* in order to free them or reduce their reference counting accordingly before
* exit the method in execution.
*
* This adds a minimum overhead to execution but save us the work of
* free memory in each method manually.
*
* The whole memory frame is an open double-linked list which start is an
* allocated empty frame that points to the real first frame. The start
* memory frame is globally accessed using ZEPHIR_GLOBAL(start_frame)
*
* Not all methods must grow/restore the zephir_memory_entry.
*/
static zend_always_inline zend_execute_data*
find_symbol_table(zend_execute_data* ex)
{
while (ex && (!ex->func || !ZEND_USER_CODE(ex->func->common.type))) {
ex = ex->prev_execute_data;
}
return ex;
}
static zephir_memory_entry* zephir_memory_grow_stack_common(zend_zephir_globals_def *g)
{
assert(g->start_memory != NULL);
if (!g->active_memory) {
g->active_memory = g->start_memory;
#ifndef ZEPHIR_RELEASE
assert(g->active_memory->permanent == 1);
#endif
}
else if (!g->active_memory->next) {
#ifndef PHP_WIN32
assert(g->active_memory >= g->end_memory - 1 || g->active_memory < g->start_memory);
#endif
zephir_memory_entry *entry = (zephir_memory_entry *) ecalloc(1, sizeof(zephir_memory_entry));
#ifndef ZEPHIR_RELEASE
entry->permanent = 0;
entry->func = NULL;
#endif
entry->prev = g->active_memory;
entry->prev->next = entry;
g->active_memory = entry;
}
else {
#ifndef ZEPHIR_RELEASE
assert(g->active_memory->permanent == 1);
#endif
assert(g->active_memory < g->end_memory && g->active_memory >= g->start_memory);
g->active_memory = g->active_memory->next;
}
assert(g->active_memory->pointer == 0);
assert(g->active_memory->hash_pointer == 0);
return g->active_memory;
}
/**
* Restore a memory stack applying GC to all observed variables
*/
static void zephir_memory_restore_stack_common(zend_zephir_globals_def *g)
{
size_t i;
zephir_memory_entry *prev, *active_memory;
zephir_symbol_table *active_symbol_table;
zval *ptr;
#ifndef ZEPHIR_RELEASE
int show_backtrace = 0;
#endif
active_memory = g->active_memory;
assert(active_memory != NULL);
if (EXPECTED(!CG(unclean_shutdown))) {
/* Clean active symbol table */
if (g->active_symbol_table) {
active_symbol_table = g->active_symbol_table;
while (active_symbol_table && active_symbol_table->scope == active_memory) {
zend_execute_data *ex = find_symbol_table(EG(current_execute_data));
#ifndef ZEPHIR_RELEASE
if (UNEXPECTED(!ex)) {
fprintf(stderr, "ERROR: unable to find a symbol table");
zephir_print_backtrace();
return;
}
#endif
zend_hash_destroy(ex->symbol_table);
efree(ex->symbol_table);
ex->symbol_table = active_symbol_table->symbol_table;
zend_attach_symbol_table(ex);
zend_rebuild_symbol_table();
g->active_symbol_table = active_symbol_table->prev;
efree(active_symbol_table);
active_symbol_table = g->active_symbol_table;
}
}
/* Check for non freed hash key zvals, mark as null to avoid string freeing */
for (i = 0; i < active_memory->hash_pointer; ++i) {
assert(active_memory->hash_addresses[i] != NULL);
if (!Z_REFCOUNTED_P(active_memory->hash_addresses[i])) continue;
if (Z_REFCOUNT_P(active_memory->hash_addresses[i]) <= 1) {
ZVAL_NULL(active_memory->hash_addresses[i]);
} else {
zval_copy_ctor(active_memory->hash_addresses[i]);
}
}
#ifndef ZEPHIR_RELEASE
for (i = 0; i < active_memory->pointer; ++i) {
if (active_memory->addresses[i] != NULL) {
zval *var = active_memory->addresses[i];
if (Z_TYPE_P(var) > IS_CALLABLE) {
fprintf(stderr, "%s: observed variable #%d (%p) has invalid type %u [%s]\n", __func__, (int)i, var, Z_TYPE_P(var), active_memory->func);
show_backtrace = 1;
}
if (!Z_REFCOUNTED_P(var)) {
continue;
}
if (Z_REFCOUNT_P(var) == 0) {
fprintf(stderr, "%s: observed variable #%d (%p) has 0 references, type=%d [%s]\n", __func__, (int)i, var, Z_TYPE_P(var), active_memory->func);
show_backtrace = 1;
}
else if (Z_REFCOUNT_P(var) >= 1000000) {
fprintf(stderr, "%s: observed variable #%d (%p) has too many references (%u), type=%d [%s]\n", __func__, (int)i, var, Z_REFCOUNT_P(var), Z_TYPE_P(var), active_memory->func);
show_backtrace = 1;
}
}
}
#endif
/* Traverse all zvals allocated, reduce the reference counting or free them */
for (i = 0; i < active_memory->pointer; ++i) {
ptr = active_memory->addresses[i];
if (EXPECTED(ptr != NULL)) {
if (!Z_REFCOUNTED_P(ptr)) continue;
if (Z_REFCOUNT_P(ptr) == 1) {
zval_ptr_dtor(ptr);
} else {
Z_DELREF_P(ptr);
}
}
}
}
#ifndef ZEPHIR_RELEASE
active_memory->func = NULL;
#endif
prev = active_memory->prev;
if (active_memory >= g->end_memory || active_memory < g->start_memory) {
#ifndef ZEPHIR_RELEASE
assert(g->active_memory->permanent == 0);
#endif
assert(prev != NULL);
if (active_memory->hash_addresses != NULL) {
efree(active_memory->hash_addresses);
}
if (active_memory->addresses != NULL) {
efree(active_memory->addresses);
}
efree(g->active_memory);
g->active_memory = prev;
prev->next = NULL;
} else {
#ifndef ZEPHIR_RELEASE
assert(g->active_memory->permanent == 1);
#endif
active_memory->pointer = 0;
active_memory->hash_pointer = 0;
g->active_memory = prev;
}
#ifndef ZEPHIR_RELEASE
if (g->active_memory) {
zephir_memory_entry *f = g->active_memory;
if (f >= g->start_memory && f < g->end_memory - 1) {
assert(f->permanent == 1);
assert(f->next != NULL);
if (f > g->start_memory) {
assert(f->prev != NULL);
}
}
}
if (show_backtrace == 1) {
zephir_print_backtrace();
}
#endif
}
#ifndef ZEPHIR_RELEASE
/**
* Finishes the current memory stack by releasing allocated memory
*/
int ZEPHIR_FASTCALL zephir_memory_restore_stack(const char *func)
{
zend_zephir_globals_def *zephir_globals_ptr = ZEPHIR_VGLOBAL;
if (UNEXPECTED(zephir_globals_ptr->active_memory == NULL)) {
fprintf(stderr, "WARNING: calling zephir_memory_restore_stack() without an active memory frame!\n");
zephir_print_backtrace();
return FAILURE;
}
if (UNEXPECTED(zephir_globals_ptr->active_memory->func != func)) {
fprintf(stderr, "Trying to free someone else's memory frame!\n");
fprintf(stderr, "The frame was created by %s\n", zephir_globals_ptr->active_memory->func);
fprintf(stderr, "Calling function: %s\n", func);
zephir_print_backtrace();
return FAILURE;
}
zephir_memory_restore_stack_common(zephir_globals_ptr);
return SUCCESS;
}
/**
* Adds a memory frame in the current executed method
*/
void ZEPHIR_FASTCALL zephir_memory_grow_stack(const char *func)
{
zephir_memory_entry *entry;
zend_zephir_globals_def *g = ZEPHIR_VGLOBAL;
if (g->start_memory == NULL) {
zephir_initialize_memory(g);
}
entry = zephir_memory_grow_stack_common(g);
entry->func = func;
}
#else
/**
* Adds a memory frame in the current executed method
*/
void ZEPHIR_FASTCALL zephir_memory_grow_stack()
{
zend_zephir_globals_def *g = ZEPHIR_VGLOBAL;
if (g->start_memory == NULL) {
zephir_initialize_memory(g);
}
zephir_memory_grow_stack_common(g);
}
/**
* Finishes the current memory stack by releasing allocated memory
*/
int ZEPHIR_FASTCALL zephir_memory_restore_stack()
{
zephir_memory_restore_stack_common(ZEPHIR_VGLOBAL);
return SUCCESS;
}
#endif
/**
* Pre-allocates memory for further use in execution
*/
void zephir_initialize_memory(zend_zephir_globals_def *zephir_globals_ptr)
{
zephir_memory_entry *start;
size_t i;
start = (zephir_memory_entry *) pecalloc(ZEPHIR_NUM_PREALLOCATED_FRAMES, sizeof(zephir_memory_entry), 1);
/* pecalloc() will take care of these members for every frame
start->pointer = 0;
start->hash_pointer = 0;
start->prev = NULL;
start->next = NULL;
*/
for (i = 0; i < ZEPHIR_NUM_PREALLOCATED_FRAMES; ++i) {
start[i].addresses = pecalloc(24, sizeof(zval*), 1);
start[i].capacity = 24;
start[i].hash_addresses = pecalloc(8, sizeof(zval*), 1);
start[i].hash_capacity = 8;
#ifndef ZEPHIR_RELEASE
start[i].permanent = 1;
#endif
}
start[0].next = &start[1];
start[ZEPHIR_NUM_PREALLOCATED_FRAMES - 1].prev = &start[ZEPHIR_NUM_PREALLOCATED_FRAMES - 2];
for (i = 1; i < ZEPHIR_NUM_PREALLOCATED_FRAMES - 1; ++i) {
start[i].next = &start[i + 1];
start[i].prev = &start[i - 1];
}
zephir_globals_ptr->start_memory = start;
zephir_globals_ptr->end_memory = start + ZEPHIR_NUM_PREALLOCATED_FRAMES;
zephir_globals_ptr->fcache = pemalloc(sizeof(HashTable), 1);
zend_hash_init(zephir_globals_ptr->fcache, 128, NULL, NULL, 1); // zephir_fcall_cache_dtor
zephir_globals_ptr->initialized = 1;
}
/**
* Deinitializes all the memory allocated by Zephir
*/
void zephir_deinitialize_memory()
{
size_t i;
zend_zephir_globals_def *zephir_globals_ptr = ZEPHIR_VGLOBAL;
if (zephir_globals_ptr->initialized != 1) {
zephir_globals_ptr->initialized = 0;
return;
}
if (zephir_globals_ptr->start_memory != NULL) {
zephir_clean_restore_stack();
}
// {
// size_t i;
// for (i=0; i<ZEPHIR_MAX_CACHE_SLOTS; ++i) {
// zephir_fcall_cache_entry* e = zephir_globals_ptr->scache[i];
// if (e) {
// free(e);
// }
// }
// zephir_fcall_cache_entry *cache_entry_temp = NULL;
// ZEND_HASH_FOREACH_PTR(zephir_globals_ptr->fcache, cache_entry_temp) {
// free(cache_entry_temp);
// } ZEND_HASH_FOREACH_END();
// }
#if 0
zend_hash_apply_with_arguments(zephir_globals_ptr->fcache, zephir_cleanup_fcache, 0);
#endif
#ifndef ZEPHIR_RELEASE
assert(zephir_globals_ptr->start_memory != NULL);
#endif
for (i = 0; i < ZEPHIR_NUM_PREALLOCATED_FRAMES; ++i) {
pefree(zephir_globals_ptr->start_memory[i].hash_addresses, 1);
pefree(zephir_globals_ptr->start_memory[i].addresses, 1);
}
pefree(zephir_globals_ptr->start_memory, 1);
zephir_globals_ptr->start_memory = NULL;
zend_hash_destroy(zephir_globals_ptr->fcache);
pefree(zephir_globals_ptr->fcache, 1);
zephir_globals_ptr->fcache = NULL;
zephir_globals_ptr->initialized = 0;
}
/**
* Creates a virtual symbol tables dynamically
*/
void zephir_create_symbol_table()
{
zephir_symbol_table *entry;
zend_zephir_globals_def *gptr = ZEPHIR_VGLOBAL;
zend_array *symbol_table;
#ifndef ZEPHIR_RELEASE
if (!gptr->active_memory) {
fprintf(stderr, "ERROR: Trying to create a virtual symbol table without a memory frame");
zephir_print_backtrace();
return;
}
#endif
zend_execute_data* ex = find_symbol_table(EG(current_execute_data));
#ifndef ZEPHIR_RELEASE
if (UNEXPECTED(!ex)) {
fprintf(stderr, "ERROR: unable to find a symbol table");
zephir_print_backtrace();
return;
}
#endif
zend_rebuild_symbol_table();
zend_detach_symbol_table(ex);
entry = (zephir_symbol_table*)emalloc(sizeof(zephir_symbol_table));
entry->scope = gptr->active_memory;
entry->symbol_table = ex->symbol_table;
entry->prev = gptr->active_symbol_table;
symbol_table = (zend_array*)emalloc(sizeof(zend_array));
zend_hash_init(symbol_table, 0, NULL, ZVAL_PTR_DTOR, 0);
zend_hash_real_init(symbol_table, 0);
ex->symbol_table = symbol_table;
gptr->active_symbol_table = entry;
}
/**
* Exports symbols to the active symbol table
*/
int zephir_set_symbol(zval *key_name, zval *value)
{
zend_array *symbol_table;
symbol_table = zend_rebuild_symbol_table();
if (!symbol_table) {
php_error_docref(NULL, E_WARNING, "Cannot find a valid symbol_table");
return FAILURE;
}
if (Z_TYPE_P(key_name) == IS_STRING) {
Z_TRY_ADDREF_P(value);
zend_hash_update(symbol_table, Z_STR_P(key_name), value);
}
return SUCCESS;
}
/**
* Exports a string symbol to the active symbol table
*/
int zephir_set_symbol_str(char *key_name, unsigned int key_length, zval *value)
{
zend_array *symbol_table = zend_rebuild_symbol_table();
if (!symbol_table) {
php_error_docref(NULL, E_WARNING, "Cannot find a valid symbol_table");
return FAILURE;
}
Z_TRY_ADDREF_P(value);
zend_hash_str_update(symbol_table, key_name, key_length, value);
return SUCCESS;
}
/**
* Cleans the function/method cache up
*/
int zephir_cleanup_fcache(void *pDest, int num_args, va_list args, zend_hash_key *hash_key)
{
zephir_fcall_cache_entry **entry = (zephir_fcall_cache_entry**) pDest;
zend_class_entry *scope;
uint len = ZSTR_LEN(hash_key->key);
assert(hash_key->key != NULL);
assert(len > 2 * sizeof(zend_class_entry**));
memcpy(&scope, &ZSTR_VAL(hash_key->key)[(len -1) - 2 * sizeof(zend_class_entry**)], sizeof(zend_class_entry*));
/*
#ifndef ZEPHIR_RELEASE
{
zend_class_entry *cls;
memcpy(&cls, &hash_key->arKey[len - sizeof(zend_class_entry**)], sizeof(zend_class_entry*));
fprintf(stderr, "func: %s, cls: %s, scope: %s [%u]\n", (*entry)->f->common.function_name, (cls ? cls->name : "N/A"), (scope ? scope->name : "N/A"), (uint)(*entry)->times);
}
#endif
*/
if ((*entry)->type != ZEND_INTERNAL_FUNCTION || (scope && scope->type != ZEND_INTERNAL_CLASS)) {
return ZEND_HASH_APPLY_REMOVE;
}
if (scope && scope->type == ZEND_INTERNAL_CLASS && scope->info.internal.module->type != MODULE_PERSISTENT) {
return ZEND_HASH_APPLY_REMOVE;
}
return ZEND_HASH_APPLY_KEEP;
}
ZEPHIR_ATTR_NONNULL static void zephir_reallocate_memory(const zend_zephir_globals_def *g)
{
zephir_memory_entry *frame = g->active_memory;
int persistent = (frame >= g->start_memory && frame < g->end_memory);
void *buf = perealloc(frame->addresses, sizeof(zval *) * (frame->capacity + 16), persistent);
if (EXPECTED(buf != NULL)) {
frame->capacity += 16;
frame->addresses = buf;
}
else {
zend_error(E_CORE_ERROR, "Memory allocation failed");
}
#ifndef ZEPHIR_RELEASE
assert(frame->permanent == persistent);
#endif
}
ZEPHIR_ATTR_NONNULL1(2) static inline void zephir_do_memory_observe(zval *var, const zend_zephir_globals_def *g)
{
zephir_memory_entry *frame = g->active_memory;
#ifndef ZEPHIR_RELEASE
if (UNEXPECTED(frame == NULL)) {
fprintf(stderr, "ZEPHIR_MM_GROW() must be called before using any of MM functions or macros!");
zephir_print_backtrace();
abort();
}
#endif
if (UNEXPECTED(frame->pointer == frame->capacity)) {
zephir_reallocate_memory(g);
}
#ifndef ZEPHIR_RELEASE
{
size_t i;
for (i = 0; i < frame->pointer; ++i) {
if (frame->addresses[i] == var) {
fprintf(stderr, "Variable %p is already observed", var);
zephir_print_backtrace();
abort();
}
}
}
#endif
frame->addresses[frame->pointer] = var;
++frame->pointer;
}
/**
* Observes a memory pointer to release its memory at the end of the request
*/
void ZEPHIR_FASTCALL zephir_memory_observe(zval *var)
{
zend_zephir_globals_def *g = ZEPHIR_VGLOBAL;
zephir_do_memory_observe(var, g);
}
/**
* Observes a variable and allocates memory for it
*/
void ZEPHIR_FASTCALL zephir_memory_alloc(zval *var)
{
zend_zephir_globals_def *g = ZEPHIR_VGLOBAL;
zephir_do_memory_observe(var, g);
ZVAL_NULL(var);
}
/**
* Cleans the zephir memory stack recursively
*/
int ZEPHIR_FASTCALL zephir_clean_restore_stack() {
zend_zephir_globals_def *zephir_globals_ptr = ZEPHIR_VGLOBAL;
while (zephir_globals_ptr->active_memory != NULL) {
zephir_memory_restore_stack_common(zephir_globals_ptr);
}
return SUCCESS;
}
/* Debugging */
#ifndef ZEPHIR_RELEASE
/**
* Dumps a memory frame for debug purposes
*/
void zephir_dump_memory_frame(zephir_memory_entry *active_memory)
{
size_t i;
assert(active_memory != NULL);
fprintf(stderr, "Dump of the memory frame %p (%s)\n", active_memory, active_memory->func);
if (active_memory->hash_pointer) {
for (i = 0; i < active_memory->hash_pointer; ++i) {
assert(active_memory->hash_addresses[i] != NULL);
fprintf(stderr, "Hash ptr %lu (%p), type=%u, refcnted=%d, refcnt=%u\n", (ulong)i, active_memory->hash_addresses[i], Z_TYPE_P(active_memory->hash_addresses[i]),
Z_REFCOUNTED_P(active_memory->hash_addresses[i]),
Z_REFCOUNTED_P(active_memory->hash_addresses[i]) ? Z_REFCOUNT_P(active_memory->hash_addresses[i]) : 0
);
}
}
for (i = 0; i < active_memory->pointer; ++i) {
if (EXPECTED(active_memory->addresses[i] != NULL)) {
zval *var = active_memory->addresses[i];
fprintf(stderr, "Obs var %lu (%p), type=%u, refcnted=%d, refcnt=%u; ", (ulong)i, var, Z_TYPE_P(var), Z_REFCOUNTED_P(var), Z_REFCOUNTED_P(var) ? Z_REFCOUNT_P(var) : 0);
switch (Z_TYPE_P(var)) {
case IS_NULL: fprintf(stderr, "value=NULL\n"); break;
#ifdef ZEPHIR_ENABLE_64BITS
case IS_LONG: fprintf(stderr, "value=%lld\n", (long long int)Z_LVAL_P(var)); break;
#else
case IS_LONG: fprintf(stderr, "value=%ld\n", Z_LVAL_P(var)); break;
#endif
case IS_DOUBLE: fprintf(stderr, "value=%E\n", Z_DVAL_P(var)); break;
case IS_TRUE: fprintf(stderr, "value=(bool)true\n"); break;
case IS_FALSE: fprintf(stderr, "value=(bool)false\n"); break;
case IS_ARRAY: fprintf(stderr, "value=array(%p), %d elements\n", Z_ARRVAL_P(var), zend_hash_num_elements(Z_ARRVAL_P(var))); break;
case IS_OBJECT: fprintf(stderr, "value=object(%u), %s\n", Z_OBJ_HANDLE_P(var), ZSTR_VAL(Z_OBJCE_P(var)->name)); break;
case IS_STRING: fprintf(stderr, "value=%s (%zu)\n", Z_STRVAL_P(var), Z_STRLEN_P(var)); break;
#ifdef ZEPHIR_ENABLE_64BITS
case IS_RESOURCE: fprintf(stderr, "value=(resource)%lld\n", (long long int)Z_LVAL_P(var)); break;
#else
case IS_RESOURCE: fprintf(stderr, "value=(resource)%ld\n", Z_LVAL_P(var)); break;
#endif
default: fprintf(stderr, "\n"); break;
}
}
}
fprintf(stderr, "End of the dump of the memory frame %p\n", active_memory);
}
void zephir_dump_current_frame()
{
zend_zephir_globals_def *zephir_globals_ptr = ZEPHIR_VGLOBAL;
if (UNEXPECTED(zephir_globals_ptr->active_memory == NULL)) {
fprintf(stderr, "WARNING: calling %s() without an active memory frame!\n", __func__);
zephir_print_backtrace();
return;
}
zephir_dump_memory_frame(zephir_globals_ptr->active_memory);
}
#endif