Lines Matching refs:CG

147 	EG(function_table) = CG(function_table);  in init_executor()
148 EG(class_table) = CG(class_table); in init_executor()
1162 original_compiler_options = CG(compiler_options); in zend_eval_stringl()
1163 CG(compiler_options) = ZEND_COMPILE_DEFAULT_FOR_EVAL; in zend_eval_stringl()
1165 CG(compiler_options) = original_compiler_options; in zend_eval_stringl()
1171 int orig_interactive = CG(interactive); in zend_eval_stringl()
1179 CG(interactive) = 0; in zend_eval_stringl()
1189 CG(interactive) = orig_interactive; in zend_eval_stringl()
1250 if (!(CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) in execute_new_code()
1251 || CG(context).backpatch_count>0 in execute_new_code()
1252 || CG(active_op_array)->function_name in execute_new_code()
1253 || CG(active_op_array)->type!=ZEND_USER_FUNCTION) { in execute_new_code()
1257 ret_opline = get_next_op(CG(active_op_array) TSRMLS_CC); in execute_new_code()
1260 …ret_opline->op1.constant = zend_add_literal(CG(active_op_array), &EG(uninitialized_zval) TSRMLS_CC… in execute_new_code()
1264 EG(start_op) = CG(active_op_array)->opcodes; in execute_new_code()
1268 end=CG(active_op_array)->opcodes+CG(active_op_array)->last; in execute_new_code()
1272 opline->op1.zv = &CG(active_op_array)->literals[opline->op1.constant].constant; in execute_new_code()
1275 opline->op2.zv = &CG(active_op_array)->literals[opline->op2.constant].constant; in execute_new_code()
1280 zend_resolve_goto_label(CG(active_op_array), opline, 1 TSRMLS_CC); in execute_new_code()
1284 opline->op1.jmp_addr = &CG(active_op_array)->opcodes[opline->op1.opline_num]; in execute_new_code()
1292 opline->op2.jmp_addr = &CG(active_op_array)->opcodes[opline->op2.opline_num]; in execute_new_code()
1302 EG(active_op_array) = CG(active_op_array); in execute_new_code()
1303 orig_interactive = CG(interactive); in execute_new_code()
1304 CG(interactive) = 0; in execute_new_code()
1305 zend_execute(CG(active_op_array) TSRMLS_CC); in execute_new_code()
1306 CG(interactive) = orig_interactive; in execute_new_code()
1312 CG(active_op_array)->last -= 1; /* get rid of that ZEND_RETURN */ in execute_new_code()
1313 EG(start_op) = CG(active_op_array)->opcodes+CG(active_op_array)->last; in execute_new_code()