return false;
tree type = gimple_range_type (call);
- tree arg;
- int prec;
scalar_int_mode mode;
switch (func)
r.set (build_zero_cst (type), build_one_cst (type));
return true;
- CASE_CFN_CLRSB:
- arg = gimple_call_arg (call, 0);
- prec = TYPE_PRECISION (TREE_TYPE (arg));
- r.set (build_int_cst (type, 0), build_int_cst (type, prec - 1));
- return true;
case CFN_UBSAN_CHECK_ADD:
range_of_builtin_ubsan_call (r, call, PLUS_EXPR, src);
return true;
return true;
}
+
+// Implement range operator for CFN_BUILT_IN_
+class cfn_clrsb : public range_operator
+{
+public:
+ using range_operator::fold_range;
+ virtual bool fold_range (irange &r, tree type, const irange &lh,
+ const irange &, relation_kind) const
+ {
+ if (lh.undefined_p ())
+ return false;
+ int prec = TYPE_PRECISION (lh.type ());
+ r.set (build_int_cst (type, 0), build_int_cst (type, prec - 1));
+ return true;
+ }
+} op_cfn_clrsb;
+
// Set up a gimple_range_op_handler for any built in function which can be
// supported via range-ops.
m_int = &op_cfn_ctz;
break;
+ CASE_CFN_CLRSB:
+ m_op1 = gimple_call_arg (call, 0);
+ m_valid = true;
+ m_int = &op_cfn_clrsb;
+ break;
+
default:
break;
}