Lines Matching refs:obj_node
2738 znode obj_node, prop_node; in zend_delayed_compile_prop() local
2742 obj_node.op_type = IS_UNUSED; in zend_delayed_compile_prop()
2744 zend_delayed_compile_var(&obj_node, obj_ast, type); in zend_delayed_compile_prop()
2745 zend_separate_if_call_and_write(&obj_node, obj_ast, type); in zend_delayed_compile_prop()
2749 opline = zend_delayed_emit_op(result, ZEND_FETCH_OBJ_R, &obj_node, &prop_node); in zend_delayed_compile_prop()
4029 znode obj_node, method_node; in zend_compile_method_call() local
4034 obj_node.op_type = IS_UNUSED; in zend_compile_method_call()
4036 zend_compile_expr(&obj_node, obj_ast); in zend_compile_method_call()
4040 opline = zend_emit_op(NULL, ZEND_INIT_METHOD_CALL, &obj_node, NULL); in zend_compile_method_call()
4205 znode obj_node; in zend_compile_clone() local
4206 zend_compile_expr(&obj_node, obj_ast); in zend_compile_clone()
4208 zend_emit_op_tmp(result, ZEND_CLONE, &obj_node, NULL); in zend_compile_clone()
7460 znode obj_node, class_node; in zend_compile_instanceof() local
7463 zend_compile_expr(&obj_node, obj_ast); in zend_compile_instanceof()
7464 if (obj_node.op_type == IS_CONST) { in zend_compile_instanceof()
7472 opline = zend_emit_op_tmp(result, ZEND_INSTANCEOF, &obj_node, NULL); in zend_compile_instanceof()