op2_type          422 Zend/zend.c    	EG(exception_op)[0].op2_type = IS_UNUSED;
op2_type          427 Zend/zend.c    	EG(exception_op)[1].op2_type = IS_UNUSED;
op2_type          432 Zend/zend.c    	EG(exception_op)[2].op2_type = IS_UNUSED;
op2_type          443 Zend/zend.c    	EG(call_trampoline_op).op2_type = IS_UNUSED;
op2_type         2144 Zend/zend_compile.c 			opline->op2_type = IS_CONST;
op2_type         2335 Zend/zend_compile.c 	if (opline->op2_type == IS_CONST) {
op2_type         2386 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         2853 Zend/zend_compile.c 	opline->op2_type = IS_CONST;
op2_type         2874 Zend/zend_compile.c 			opline->op2_type = IS_CONST;
op2_type         2881 Zend/zend_compile.c 			opline->op2_type = IS_CONST;
op2_type         3001 Zend/zend_compile.c 	opline->op2_type = IS_CONST;
op2_type         3120 Zend/zend_compile.c 			opline->op2_type = IS_CONST;
op2_type         3281 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         3336 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         3932 Zend/zend_compile.c 		opline->op2_type = IS_VAR;
op2_type         4170 Zend/zend_compile.c 		opline->op2_type = IS_CV;
op2_type         4828 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         5121 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         5163 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         5267 Zend/zend_compile.c 	opline->op2_type = IS_CONST;
op2_type         6332 Zend/zend_compile.c 		opline->op2_type = IS_CONST;
op2_type         6552 Zend/zend_compile.c 	opline->op2_type = IS_CONST;
op2_type         6737 Zend/zend_compile.c 		if (opline->op2_type == IS_CONST) {
op2_type         6743 Zend/zend_compile.c 			opline->op1_type = opline->op2_type;
op2_type         6753 Zend/zend_compile.c 		opline->op1_type = init_opline->op2_type;
op2_type           44 Zend/zend_compile.h 	(opline)->op2_type = IS_UNUSED; \
op2_type          164 Zend/zend_compile.h 	zend_uchar op2_type;
op2_type          455 Zend/zend_inheritance.c 					if (precv && precv->opcode == ZEND_RECV_INIT && precv->op2_type != IS_UNUSED) {
op2_type          693 Zend/zend_opcode.c 		if (opline->op2_type == IS_CONST) {
op2_type          695 Zend/zend_opcode.c 		} else if (opline->op2_type & (IS_VAR|IS_TMP_VAR)) {
op2_type         15988 Zend/zend_vm_execute.h 	if (EXPECTED(opline->op2_type == IS_CV)) {
op2_type         16187 Zend/zend_vm_execute.h 	if (EXPECTED(opline->op2_type == IS_CV)) {
op2_type         45505 Zend/zend_vm_execute.h 	zend_error_noreturn(E_ERROR, "Invalid opcode %d/%d/%d.", OPLINE->opcode, OPLINE->op1_type, OPLINE->op2_type);
op2_type         49863 Zend/zend_vm_execute.h 		return zend_opcode_handlers[opcode * 25 + zend_vm_decode[op->op1_type] * 5 + zend_vm_decode[op->op2_type]];
op2_type         1075 ext/opcache/Optimizer/block_pass.c 				opline->op2_type = IS_UNUSED;
op2_type         1084 ext/opcache/Optimizer/block_pass.c 				opline->op2_type = IS_UNUSED;
op2_type         1093 ext/opcache/Optimizer/block_pass.c 			           (opline->op2_type == IS_CONST ||
op2_type         1094 ext/opcache/Optimizer/block_pass.c 			            (opline->op2_type == IS_TMP_VAR &&
op2_type         1818 ext/opcache/Optimizer/block_pass.c 			if (opline->op2_type & (IS_VAR | IS_TMP_VAR)) {
op2_type          218 ext/opcache/Optimizer/compact_literals.c 								opline->op2_type,
op2_type          413 ext/opcache/Optimizer/pass1_5.c 						opline->op2_type = IS_CONST;
op2_type          657 ext/opcache/Optimizer/pass1_5.c 			    opline->op2_type == IS_UNUSED &&
op2_type          684 ext/opcache/Optimizer/pass1_5.c 					} else if (op->op2_type == IS_VAR && op->op2.var == var) {
op2_type          700 ext/opcache/Optimizer/pass1_5.c 					} else if (use->op2_type == IS_VAR && use->op2.var == var) {
op2_type          701 ext/opcache/Optimizer/pass1_5.c 						use->op2_type = IS_CV;
op2_type           85 ext/opcache/Optimizer/zend_optimizer.c 			if (opline->op2_type & (IS_TMP_VAR|IS_VAR)) {
op2_type          569 ext/opcache/Optimizer/zend_optimizer.c 		if (opline->op2_type == IS_CONST) {
op2_type          613 ext/opcache/Optimizer/zend_optimizer.c 		if (opline->op2_type == IS_CONST) {
op2_type           43 ext/opcache/Optimizer/zend_optimizer_internal.h 	(opline)->op2_type = IS_UNUSED; \
op2_type          351 ext/opcache/ZendAccelerator.h # define ZEND_OP2_TYPE(opline)		(opline)->op2_type
op2_type          690 ext/reflection/php_reflection.c 		if (precv && precv->opcode == ZEND_RECV_INIT && precv->op2_type != IS_UNUSED) {
op2_type         1489 ext/reflection/php_reflection.c 	if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
op2_type         2832 ext/reflection/php_reflection.c 	if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
op2_type          139 sapi/phpdbg/phpdbg_opcode.c 		decode[2] = phpdbg_decode_op(ops, &op->op2, op->op2_type);