Searched refs:op0 (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_ast.h | 363 static zend_always_inline zend_ast *zend_ast_create_binary_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_binary_op() argument 364 return zend_ast_create_ex(ZEND_AST_BINARY_OP, opcode, op0, op1); in zend_ast_create_binary_op() 367 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1); 369 static zend_always_inline zend_ast *zend_ast_create_assign_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_assign_op() argument 370 return zend_ast_create_ex(ZEND_AST_ASSIGN_OP, opcode, op0, op1); in zend_ast_create_assign_op() 372 static zend_always_inline zend_ast *zend_ast_create_cast(uint32_t type, zend_ast *op0) { in zend_ast_create_cast() argument 373 return zend_ast_create_ex(ZEND_AST_CAST, type, op0); in zend_ast_create_cast()
|
H A D | zend_ast.c | 422 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1) { in zend_ast_create_concat_op() argument 423 if (op0->kind == ZEND_AST_ZVAL && op1->kind == ZEND_AST_ZVAL) { in zend_ast_create_concat_op() 424 zval *zv0 = zend_ast_get_zval(op0); in zend_ast_create_concat_op() 432 return zend_ast_create_binary_op(ZEND_CONCAT, op0, op1); in zend_ast_create_concat_op()
|
Completed in 12 milliseconds