Home
last modified time | relevance | path

Searched refs:op0 (Results 1 – 2 of 2) sorted by relevance

/PHP-8.2/Zend/
H A Dzend_ast.h355 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
356 return zend_ast_create_ex(ZEND_AST_BINARY_OP, opcode, op0, op1); in zend_ast_create_binary_op()
359 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1);
361 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
362 return zend_ast_create_ex(ZEND_AST_ASSIGN_OP, opcode, op0, op1); in zend_ast_create_assign_op()
364 static zend_always_inline zend_ast *zend_ast_create_cast(uint32_t type, zend_ast *op0) { in zend_ast_create_cast() argument
365 return zend_ast_create_ex(ZEND_AST_CAST, type, op0); in zend_ast_create_cast()
H A Dzend_ast.c423 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1) { in zend_ast_create_concat_op() argument
424 if (op0->kind == ZEND_AST_ZVAL && op1->kind == ZEND_AST_ZVAL) { in zend_ast_create_concat_op()
425 zval *zv0 = zend_ast_get_zval(op0); in zend_ast_create_concat_op()
433 return zend_ast_create_binary_op(ZEND_CONCAT, op0, op1); in zend_ast_create_concat_op()

Completed in 13 milliseconds