Lines Matching refs:IS_BOT

92 #define IS_BOT(zv) (Z_TYPE_P(zv) == BOT)  macro
105 } else if (IS_BOT(zv)) { in scp_dump_value()
145 return !IS_TOP(zv) && !IS_BOT(zv); in value_known()
152 if (IS_BOT(value) || IS_TOP(new)) { in set_value()
166 if (IS_TOP(value) || IS_BOT(new)) { in set_value()
448 if (fetch_array_elem(&value, op1, op2) == SUCCESS && value && !IS_BOT(value)) { in ct_eval_fetch_dim()
488 if (IS_PARTIAL_ARRAY(op1) && (!value || IS_BOT(value))) { in ct_eval_isset_dim()
626 if (fetch_obj_prop(&value, op1, op2) == SUCCESS && value && !IS_BOT(value)) { in ct_eval_fetch_obj()
640 if (!value || IS_BOT(value)) { in ct_eval_isset_obj()
1048 if (IS_BOT(op1) && (ctx->scdf.ssa->var_info[ssa_op->op1_use].type & MAY_BE_REF)) { in sccp_visit_instr()
1083 if (IS_BOT(op1)) { in sccp_visit_instr()
1095 if (op2 && IS_BOT(op2)) { in sccp_visit_instr()
1109 if (IS_BOT(data)) { in sccp_visit_instr()
1178 if (IS_BOT(op1)) { in sccp_visit_instr()
1188 if (IS_BOT(op2)) { in sccp_visit_instr()
1197 if (IS_BOT(data)) { in sccp_visit_instr()
1270 if (IS_BOT(result)) { in sccp_visit_instr()
1294 if (op2 && IS_BOT(op2)) { in sccp_visit_instr()
1308 if ((op1 && IS_BOT(op1)) in sccp_visit_instr()
1376 if ((op1 && IS_BOT(op1)) || (op2 && IS_BOT(op2))) { in sccp_visit_instr()
1453 if (IS_BOT(data)) { in sccp_visit_instr()
1498 if (IS_BOT(data)) { in sccp_visit_instr()
1782 if (ssa_op->result_def < 0 || IS_BOT(&ctx->values[ssa_op->result_def])) { in sccp_visit_instr()
1802 if (IS_BOT(args[i]) || IS_PARTIAL_ARRAY(args[i])) { in sccp_visit_instr()
1871 if (!op1 || IS_BOT(op1)) { in sccp_mark_feasible_successors()
1989 if (IS_BOT(a) || IS_TOP(b)) { in join_phi_values()
1997 if (IS_BOT(b)) { in join_phi_values()
2024 if (!IS_BOT(&ctx->values[phi->ssa_var])) { in sccp_visit_phi()
2463 if (IS_TOP(zv) || IS_BOT(zv)) { in sccp_optimize_op_array()