Lines Matching refs:obj_node

2493 static void zend_emit_jmp_null(znode *obj_node, uint32_t bp_type)  in zend_emit_jmp_null()  argument
2496 zend_op *opline = zend_emit_op(NULL, ZEND_JMP_NULL, obj_node, NULL); in zend_emit_jmp_null()
3044 znode obj_node, prop_node; in zend_delayed_compile_prop() local
3050 obj_node.op_type = IS_UNUSED; in zend_delayed_compile_prop()
3052 zend_emit_op(&obj_node, ZEND_FETCH_THIS, NULL, NULL); in zend_delayed_compile_prop()
3060 opline = zend_delayed_compile_var(&obj_node, obj_ast, type, 0); in zend_delayed_compile_prop()
3068 zend_separate_if_call_and_write(&obj_node, obj_ast, type); in zend_delayed_compile_prop()
3070 if (obj_node.op_type == IS_TMP_VAR) { in zend_delayed_compile_prop()
3073 uint32_t var = obj_node.u.op.var; in zend_delayed_compile_prop()
3094 zend_emit_jmp_null(&obj_node, type); in zend_delayed_compile_prop()
3100 opline = zend_delayed_emit_op(result, ZEND_FETCH_OBJ_R, &obj_node, &prop_node); in zend_delayed_compile_prop()
4706 znode obj_node, method_node; in zend_compile_method_call() local
4714 obj_node.op_type = IS_UNUSED; in zend_compile_method_call()
4716 zend_emit_op(&obj_node, ZEND_FETCH_THIS, NULL, NULL); in zend_compile_method_call()
4724 zend_compile_expr(&obj_node, obj_ast); in zend_compile_method_call()
4726 zend_emit_jmp_null(&obj_node, type); in zend_compile_method_call()
4731 opline = zend_emit_op(NULL, ZEND_INIT_METHOD_CALL, &obj_node, NULL); in zend_compile_method_call()
4901 znode obj_node; in zend_compile_clone() local
4902 zend_compile_expr(&obj_node, obj_ast); in zend_compile_clone()
4904 zend_emit_op_tmp(result, ZEND_CLONE, &obj_node, NULL); in zend_compile_clone()
9561 znode obj_node, class_node; in zend_compile_instanceof() local
9564 zend_compile_expr(&obj_node, obj_ast); in zend_compile_instanceof()
9565 if (obj_node.op_type == IS_CONST) { in zend_compile_instanceof()
9566 zend_do_free(&obj_node); in zend_compile_instanceof()
9575 opline = zend_emit_op_tmp(result, ZEND_INSTANCEOF, &obj_node, NULL); in zend_compile_instanceof()