Searched refs:MAY_BE_DOUBLE (Results 1 – 7 of 7) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_type_info.h | 31 #define MAY_BE_DOUBLE (1 << IS_DOUBLE) macro 36 #define MAY_BE_ANY (MAY_BE_NULL|MAY_BE_FALSE|MAY_BE_TRUE|MAY_BE_LONG|MAY_BE_DOUBLE… 45 #define MAY_BE_ARRAY_OF_DOUBLE (MAY_BE_DOUBLE << MAY_BE_ARRAY_SHIFT)
|
H A D | zend_vm_def.h | 8236 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_ADD, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE), ZEND_… 8272 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_SUB, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE), ZEND_… 8310 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_MUL, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE), ZEND_… 8336 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_IS_EQUAL, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE), … 8364 …D_VM_TYPE_SPEC_HANDLER(ZEND_IS_NOT_EQUAL, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE)… 8392 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_IS_SMALLER, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE)… 8420 …PE_SPEC_HANDLER(ZEND_IS_SMALLER_OR_EQUAL, (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE)… 8460 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_PRE_INC, (op1_info == (MAY_BE_LONG|MAY_BE_DOUBLE)), ZEND_PRE_INC_LON… 8542 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_POST_INC, (op1_info == (MAY_BE_LONG|MAY_BE_DOUBLE)), ZEND_POST_INC_L… 8579 ZEND_VM_TYPE_SPEC_HANDLER(ZEND_POST_DEC, (op1_info == (MAY_BE_LONG|MAY_BE_DOUBLE)), ZEND_POST_DEC_L… [all …]
|
H A D | zend_vm_execute.h | 62781 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62802 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62826 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62845 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62864 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62880 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62893 } else if (op1_info == MAY_BE_DOUBLE && op2_info == MAY_BE_DOUBLE) { 62901 if (op1_info == MAY_BE_DOUBLE) { 62912 } else if (op1_info == (MAY_BE_LONG|MAY_BE_DOUBLE)) { 62921 } else if (op1_info == (MAY_BE_LONG|MAY_BE_DOUBLE)) { [all …]
|
/PHP-7.1/ext/opcache/Optimizer/ |
H A D | zend_func_info.c | 112 if ((t1 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info() 113 || (t2 & (MAY_BE_DOUBLE|MAY_BE_STRING)) in zend_range_info() 114 || (t3 & (MAY_BE_DOUBLE|MAY_BE_STRING))) { in zend_range_info() 117 …if ((t1 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_DOUBLE))) && (t2 & (MAY_BE_ANY-(MAY_BE_STRING|MAY_BE_D… in zend_range_info() 118 if ((t3 & MAY_BE_ANY) != MAY_BE_DOUBLE) { in zend_range_info() 448 F0("sin", MAY_BE_NULL | MAY_BE_DOUBLE), 449 F0("cos", MAY_BE_NULL | MAY_BE_DOUBLE), 450 F0("tan", MAY_BE_NULL | MAY_BE_DOUBLE), 451 F0("asin", MAY_BE_NULL | MAY_BE_DOUBLE), 463 F0("pi", MAY_BE_DOUBLE), [all …]
|
H A D | zend_inference.c | 2046 } else if (t1_type == MAY_BE_DOUBLE || t2_type == MAY_BE_DOUBLE) { in binary_op_result_type() 2047 tmp |= MAY_BE_DOUBLE; in binary_op_result_type() 2072 } else if (t1_type == MAY_BE_DOUBLE || t2_type == MAY_BE_DOUBLE) { in binary_op_result_type() 2073 tmp |= MAY_BE_DOUBLE; in binary_op_result_type() 2080 if (t1_type == MAY_BE_DOUBLE || t2_type == MAY_BE_DOUBLE) { in binary_op_result_type() 2081 tmp |= MAY_BE_DOUBLE; in binary_op_result_type() 2464 if (t1 & MAY_BE_DOUBLE) { in zend_update_type_info() 2465 tmp |= MAY_BE_DOUBLE; in zend_update_type_info() 2526 if (t1 & MAY_BE_DOUBLE) { in zend_update_type_info() 2527 tmp |= MAY_BE_DOUBLE; in zend_update_type_info() [all …]
|
H A D | dfa_pass.c | 354 uint32_t simple = MAY_BE_NULL|MAY_BE_FALSE|MAY_BE_TRUE|MAY_BE_LONG|MAY_BE_DOUBLE; in opline_supports_assign_contraction() 442 && (OP2_INFO() & MAY_BE_ANY) == MAY_BE_DOUBLE in zend_dfa_optimize_op_array() 454 && (OP1_INFO() & MAY_BE_ANY) == MAY_BE_DOUBLE in zend_dfa_optimize_op_array()
|
H A D | zend_dump.c | 199 if (info & MAY_BE_DOUBLE) { in zend_dump_type_info()
|
Completed in 203 milliseconds