Fix hash_map::traverse overload
authorMatthias Kretz <m.kretz@gsi.de>
Fri, 3 Dec 2021 08:37:52 +0000 (09:37 +0100)
committerMatthias Kretz <m.kretz@gsi.de>
Tue, 7 Dec 2021 12:11:47 +0000 (13:11 +0100)
The hash_map::traverse overload taking a non-const Value pointer breaks
if the callback returns false. The other overload should behave the
same.

Signed-off-by: Matthias Kretz <m.kretz@gsi.de>
gcc/ChangeLog:

* hash-map.h (hash_map::traverse): Let both overloads behave the
same.
* predict.c (assert_is_empty): Return true, thus not changing
behavior.

gcc/hash-map.h
gcc/predict.c

index dd039f1..c4fe26c 100644 (file)
@@ -217,7 +217,8 @@ public:
     }
 
   /* Call the call back on each pair of key and value with the passed in
-     arg.  */
+     arg until either the call back returns false or all pairs have been seen.
+     The traversal is unordered.  */
 
   template<typename Arg, bool (*f)(const typename Traits::key_type &,
                                   const Value &, Arg)>
@@ -225,7 +226,8 @@ public:
     {
       for (typename hash_table<hash_entry>::iterator iter = m_table.begin ();
           iter != m_table.end (); ++iter)
-       f ((*iter).m_key, (*iter).m_value, a);
+       if (!f ((*iter).m_key, (*iter).m_value, a))
+         break;
     }
 
   template<typename Arg, bool (*f)(const typename Traits::key_type &,
index 3cb4e3c..1a1da7e 100644 (file)
@@ -3044,7 +3044,7 @@ assert_is_empty (const_basic_block const &, edge_prediction *const &value,
                 void *)
 {
   gcc_assert (!value);
-  return false;
+  return true;
 }
 
 /* Predict branch probabilities and estimate profile for basic block BB.