@@ -4799,7 +4799,7 @@ static ZEND_VM_COLD ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC
4799
4799
}
4800
4800
compare_values:
4801
4801
if (Z_TYPE_P(op1) <= IS_TRUE) {
4802
- if (((IS_CONST & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
4802
+ if (((IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
4803
4803
/* They are both undefined - fetch them to emit the undefined variable warnings. */
4804
4804
op1 = ZVAL_UNDEFINED_OP1();
4805
4805
op2 = ZVAL_UNDEFINED_OP2();
@@ -4900,7 +4900,7 @@ static ZEND_VM_COLD ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_
4900
4900
}
4901
4901
compare_values:
4902
4902
if (Z_TYPE_P(op1) <= IS_TRUE) {
4903
- if (((IS_CONST & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
4903
+ if (((IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
4904
4904
/* They are both undefined - fetch them to emit the undefined variable warnings. */
4905
4905
op1 = ZVAL_UNDEFINED_OP1();
4906
4906
op2 = ZVAL_UNDEFINED_OP2();
@@ -18007,7 +18007,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_TMP_CONST_HA
18007
18007
}
18008
18008
compare_values:
18009
18009
if (Z_TYPE_P(op1) <= IS_TRUE) {
18010
- if (((IS_TMP_VAR & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
18010
+ if (((IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
18011
18011
/* They are both undefined - fetch them to emit the undefined variable warnings. */
18012
18012
op1 = ZVAL_UNDEFINED_OP1();
18013
18013
op2 = ZVAL_UNDEFINED_OP2();
@@ -18108,7 +18108,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_TMP_CONS
18108
18108
}
18109
18109
compare_values:
18110
18110
if (Z_TYPE_P(op1) <= IS_TRUE) {
18111
- if (((IS_TMP_VAR & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
18111
+ if (((IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
18112
18112
/* They are both undefined - fetch them to emit the undefined variable warnings. */
18113
18113
op1 = ZVAL_UNDEFINED_OP1();
18114
18114
op2 = ZVAL_UNDEFINED_OP2();
@@ -18980,7 +18980,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_TMP_TMP_HAND
18980
18980
}
18981
18981
compare_values:
18982
18982
if (Z_TYPE_P(op1) <= IS_TRUE) {
18983
- if (((IS_TMP_VAR & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
18983
+ if (((IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
18984
18984
/* They are both undefined - fetch them to emit the undefined variable warnings. */
18985
18985
op1 = ZVAL_UNDEFINED_OP1();
18986
18986
op2 = ZVAL_UNDEFINED_OP2();
@@ -19081,7 +19081,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_TMP_TMP_
19081
19081
}
19082
19082
compare_values:
19083
19083
if (Z_TYPE_P(op1) <= IS_TRUE) {
19084
- if (((IS_TMP_VAR & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
19084
+ if (((IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
19085
19085
/* They are both undefined - fetch them to emit the undefined variable warnings. */
19086
19086
op1 = ZVAL_UNDEFINED_OP1();
19087
19087
op2 = ZVAL_UNDEFINED_OP2();
@@ -21361,7 +21361,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_VAR_CONST_HA
21361
21361
}
21362
21362
compare_values:
21363
21363
if (Z_TYPE_P(op1) <= IS_TRUE) {
21364
- if (((IS_VAR & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
21364
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
21365
21365
/* They are both undefined - fetch them to emit the undefined variable warnings. */
21366
21366
op1 = ZVAL_UNDEFINED_OP1();
21367
21367
op2 = ZVAL_UNDEFINED_OP2();
@@ -21462,7 +21462,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_VAR_CONS
21462
21462
}
21463
21463
compare_values:
21464
21464
if (Z_TYPE_P(op1) <= IS_TRUE) {
21465
- if (((IS_VAR & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
21465
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
21466
21466
/* They are both undefined - fetch them to emit the undefined variable warnings. */
21467
21467
op1 = ZVAL_UNDEFINED_OP1();
21468
21468
op2 = ZVAL_UNDEFINED_OP2();
@@ -25904,7 +25904,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_VAR_TMP_HAND
25904
25904
}
25905
25905
compare_values:
25906
25906
if (Z_TYPE_P(op1) <= IS_TRUE) {
25907
- if (((IS_VAR & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
25907
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
25908
25908
/* They are both undefined - fetch them to emit the undefined variable warnings. */
25909
25909
op1 = ZVAL_UNDEFINED_OP1();
25910
25910
op2 = ZVAL_UNDEFINED_OP2();
@@ -26005,7 +26005,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_VAR_TMP_
26005
26005
}
26006
26006
compare_values:
26007
26007
if (Z_TYPE_P(op1) <= IS_TRUE) {
26008
- if (((IS_VAR & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
26008
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
26009
26009
/* They are both undefined - fetch them to emit the undefined variable warnings. */
26010
26010
op1 = ZVAL_UNDEFINED_OP1();
26011
26011
op2 = ZVAL_UNDEFINED_OP2();
@@ -26146,7 +26146,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_VAR_VAR_HAND
26146
26146
}
26147
26147
compare_values:
26148
26148
if (Z_TYPE_P(op1) <= IS_TRUE) {
26149
- if (((IS_VAR & IS_CV) || (IS_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
26149
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
26150
26150
/* They are both undefined - fetch them to emit the undefined variable warnings. */
26151
26151
op1 = ZVAL_UNDEFINED_OP1();
26152
26152
op2 = ZVAL_UNDEFINED_OP2();
@@ -26247,7 +26247,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_VAR_VAR_
26247
26247
}
26248
26248
compare_values:
26249
26249
if (Z_TYPE_P(op1) <= IS_TRUE) {
26250
- if (((IS_VAR & IS_CV) || (IS_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
26250
+ if (((IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
26251
26251
/* They are both undefined - fetch them to emit the undefined variable warnings. */
26252
26252
op1 = ZVAL_UNDEFINED_OP1();
26253
26253
op2 = ZVAL_UNDEFINED_OP2();
@@ -37797,7 +37797,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_CV_CONST_HAN
37797
37797
}
37798
37798
compare_values:
37799
37799
if (Z_TYPE_P(op1) <= IS_TRUE) {
37800
- if (((IS_CV & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
37800
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
37801
37801
/* They are both undefined - fetch them to emit the undefined variable warnings. */
37802
37802
op1 = ZVAL_UNDEFINED_OP1();
37803
37803
op2 = ZVAL_UNDEFINED_OP2();
@@ -37898,7 +37898,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_CV_CONST
37898
37898
}
37899
37899
compare_values:
37900
37900
if (Z_TYPE_P(op1) <= IS_TRUE) {
37901
- if (((IS_CV & IS_CV) || (IS_CONST & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
37901
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CONST & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
37902
37902
/* They are both undefined - fetch them to emit the undefined variable warnings. */
37903
37903
op1 = ZVAL_UNDEFINED_OP1();
37904
37904
op2 = ZVAL_UNDEFINED_OP2();
@@ -44447,7 +44447,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_CV_TMP_HANDL
44447
44447
}
44448
44448
compare_values:
44449
44449
if (Z_TYPE_P(op1) <= IS_TRUE) {
44450
- if (((IS_CV & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
44450
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
44451
44451
/* They are both undefined - fetch them to emit the undefined variable warnings. */
44452
44452
op1 = ZVAL_UNDEFINED_OP1();
44453
44453
op2 = ZVAL_UNDEFINED_OP2();
@@ -44548,7 +44548,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_CV_TMP_H
44548
44548
}
44549
44549
compare_values:
44550
44550
if (Z_TYPE_P(op1) <= IS_TRUE) {
44551
- if (((IS_CV & IS_CV) || (IS_TMP_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
44551
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_TMP_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
44552
44552
/* They are both undefined - fetch them to emit the undefined variable warnings. */
44553
44553
op1 = ZVAL_UNDEFINED_OP1();
44554
44554
op2 = ZVAL_UNDEFINED_OP2();
@@ -44689,7 +44689,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_CV_VAR_HANDL
44689
44689
}
44690
44690
compare_values:
44691
44691
if (Z_TYPE_P(op1) <= IS_TRUE) {
44692
- if (((IS_CV & IS_CV) || (IS_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
44692
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
44693
44693
/* They are both undefined - fetch them to emit the undefined variable warnings. */
44694
44694
op1 = ZVAL_UNDEFINED_OP1();
44695
44695
op2 = ZVAL_UNDEFINED_OP2();
@@ -44790,7 +44790,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_CV_VAR_H
44790
44790
}
44791
44791
compare_values:
44792
44792
if (Z_TYPE_P(op1) <= IS_TRUE) {
44793
- if (((IS_CV & IS_CV) || (IS_VAR & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
44793
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_VAR & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
44794
44794
/* They are both undefined - fetch them to emit the undefined variable warnings. */
44795
44795
op1 = ZVAL_UNDEFINED_OP1();
44796
44796
op2 = ZVAL_UNDEFINED_OP2();
@@ -46516,7 +46516,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_IDENTICAL_SPEC_CV_CV_HANDLE
46516
46516
}
46517
46517
compare_values:
46518
46518
if (Z_TYPE_P(op1) <= IS_TRUE) {
46519
- if (((IS_CV & IS_CV) || (IS_CV & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
46519
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
46520
46520
/* They are both undefined - fetch them to emit the undefined variable warnings. */
46521
46521
op1 = ZVAL_UNDEFINED_OP1();
46522
46522
op2 = ZVAL_UNDEFINED_OP2();
@@ -46617,7 +46617,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_IS_NOT_IDENTICAL_SPEC_CV_CV_HA
46617
46617
}
46618
46618
compare_values:
46619
46619
if (Z_TYPE_P(op1) <= IS_TRUE) {
46620
- if (((IS_CV & IS_CV) || (IS_CV & IS_CV)) && UNEXPECTED(Z_TYPE_P(op1 ) == IS_UNDEF)) {
46620
+ if (((IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op1) == IS_UNDEF)) || (( IS_CV & IS_CV) && UNEXPECTED(Z_TYPE_P(op2 ) == IS_UNDEF) )) {
46621
46621
/* They are both undefined - fetch them to emit the undefined variable warnings. */
46622
46622
op1 = ZVAL_UNDEFINED_OP1();
46623
46623
op2 = ZVAL_UNDEFINED_OP2();
0 commit comments