Home
last modified time | relevance | path

Searched refs:op_type (Results 1 – 10 of 10) sorted by relevance

/PHP-5.4/Zend/
H A Dzend_language_parser.y364 /* empty */ { $$.op_type = ZEND_RETURN_VAL; }
365 | '&' { $$.op_type = ZEND_RETURN_REF; }
398 /* empty */ { $$.op_type = IS_UNUSED; }
422 /* empty */ { $$.op_type = IS_UNUSED; }
465 /* empty */ { $$.op_type = IS_UNUSED; }
527 /* empty */ { $$.op_type = IS_UNUSED; }
528 | T_ARRAY { $$.op_type = IS_CONST; Z_TYPE($$.u.constant)=IS_ARRAY; }
529 | T_CALLABLE { $$.op_type = IS_CONST; Z_TYPE($$.u.constant)=IS_CALLABLE; }
887 /* empty */ { memset(&$$, 0, sizeof(znode)); $$.op_type = IS_UNUSED; }
888 | '(' ')' { memset(&$$, 0, sizeof(znode)); $$.op_type = IS_UNUSED; }
[all …]
H A Dzend_execute.c52 #define get_zval_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr(op_type, node, Ts, should_… argument
53 #define get_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr_ptr(op_type, node, Ts,… argument
54 #define get_obj_zval_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr(op_type, node, Ts,… argument
55 #define get_obj_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr_ptr(op_type, n… argument
349 switch (op_type) { in _get_zval_ptr()
449 if (op_type == IS_CV) { in _get_zval_ptr_ptr()
452 } else if (op_type == IS_VAR) { in _get_zval_ptr_ptr()
472 if (op_type == IS_UNUSED) { in _get_obj_zval_ptr_ptr()
497 if (op_type == IS_UNUSED) { in _get_obj_zval_ptr()
505 return get_zval_ptr(op_type, op, Ts, should_free, type); in _get_obj_zval_ptr()
[all …]
H A Dzend_compile.c669 result->op_type = IS_CV; in fetch_simple_variable_ex()
1845 var.op_type = IS_CV; in zend_do_receive_arg()
2080 tmp.op_type = IS_CONST; in zend_resolve_non_class_name()
2170 tmp.op_type = IS_CONST; in zend_resolve_class_name()
4805 tmp.op_type = IS_CONST; in zend_do_begin_class_declaration()
5476 switch (cmd->op_type) { in zend_do_shell_exec()
6302 if (value->op_type == IS_VAR || value->op_type == IS_CV) { in zend_do_jmp_set()
6327 if (false_value->op_type == IS_VAR || false_value->op_type == IS_CV) { in zend_do_jmp_set_else()
6373 if (true_value->op_type == IS_VAR || true_value->op_type == IS_CV) { in zend_do_qm_true()
6400 if (false_value->op_type == IS_VAR || false_value->op_type == IS_CV) { in zend_do_qm_false()
[all …]
H A DREADME.ZEND_VM4 ZEND_VM architecture allows specializing opcode handlers according to op_type
26 you can use ANY mask to disable specialization according operand's op_type.
56 opline->op<X>.op_type
H A Dzend_execute.h429 ZEND_API zval *zend_get_zval_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_f…
430 ZEND_API zval **zend_get_zval_ptr_ptr(int op_type, const znode_op *node, const temp_variable *Ts, z…
H A Dzend_compile.h87 int op_type; member
H A Dzend_language_scanner.l561 retval_znode.op_type = IS_CONST; in END_EXTERN_C()
H A Dzend_language_scanner.c563 retval_znode.op_type = IS_CONST; in END_EXTERN_C()
/PHP-5.4/
H A D.gdbinit534 if $znode->op_type == 1
537 if $znode->op_type == 2
540 if $znode->op_type == 4
543 if $znode->op_type == 8
549 if $znode->op_type == 1
553 if $znode->op_type == 2
558 if $znode->op_type == 4
563 if $znode->op_type == 8
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_compile.c4443 int repeat_type, op_type; in compile_branch() local
5597 op_type = 0; /* Default single-char op codes */ in compile_branch()
5693 case OP_CHAR: op_type = OP_STAR - OP_STAR; break; in compile_branch()
5694 case OP_CHARI: op_type = OP_STARI - OP_STAR; break; in compile_branch()
5695 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break; in compile_branch()
5696 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break; in compile_branch()
5741 op_type = OP_TYPESTAR - OP_STAR; /* Use type opcodes */ in compile_branch()
5762 repeat_type += op_type; in compile_branch()
5801 *code++ = OP_EXACT + op_type; /* NB EXACT doesn't have repeat_type */ in compile_branch()

Completed in 78 milliseconds