base: Rename Flags::update as Flags::replace
authorDaniel R. Carvalho <odanrc@yahoo.com.br>
Sat, 26 Dec 2020 14:38:29 +0000 (11:38 -0300)
committerDaniel Carvalho <odanrc@yahoo.com.br>
Tue, 19 Jan 2021 03:27:04 +0000 (03:27 +0000)
The function name `update` is too generic. Given that
the expected functionality is to replace the selected
flag bits with the bits provided as parameters, rename
it as `replace`.

Change-Id: Ic7613ae09ecf9b92e31103b4e928192c07e9b640
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/38737
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>

src/base/flags.hh
src/base/flags.test.cc

index 6e8221004a496f312c1dfd280f2d7c118eef4ae3..0544380f1de60662e57eef6c815af18671d4df26 100644 (file)
@@ -135,7 +135,7 @@ class Flags
      * @param mask Mask used to determine which bits are replaced.
      */
     void
-    update(Type flags, Type mask)
+    replace(Type flags, Type mask)
     {
         _flags = (_flags & ~mask) | (flags & mask);
     }
index c45a7a89dc8e7a4a0d5f64f97ea7cd2acbf4b51f..08031b9b73e3902b975d750c129052c42a44a16e 100644 (file)
@@ -192,11 +192,11 @@ TEST(FlagsTest, ConditionalSet)
 }
 
 /**
- * Test updating a masked selection of bits. This means that bits of the
+ * Test replacing a masked selection of bits. This means that bits of the
  * original value that match the mask will be replaced by the bits of
  * the new value that match the mask.
  */
-TEST(FlagsTest, UpdateOverlapping)
+TEST(FlagsTest, ReplaceOverlapping)
 {
     const uint32_t value_a = (1 << 4) | (1 << 5) | (1 << 6);
     const uint32_t value_b = (1 << 3) | (1 << 5) | (1 << 9);
@@ -207,6 +207,6 @@ TEST(FlagsTest, UpdateOverlapping)
     // (1 << 10) is not set in both values, so it remains not set
     const uint32_t result = (1 << 5) | (1 << 6) | (1 << 9);
     Flags<uint32_t> flags(value_a);
-    flags.update(value_b, mask);
+    flags.replace(value_b, mask);
     ASSERT_EQ(result, uint32_t(flags));
 }