sim: Refactor how serialization types are handled in the backend.
authorGabe Black <gabe.black@gmail.com>
Wed, 21 Oct 2020 02:17:18 +0000 (19:17 -0700)
committerGabe Black <gabe.black@gmail.com>
Thu, 22 Oct 2020 22:01:44 +0000 (22:01 +0000)
The parseParam and showParam functions partially worked using template
specialization, and partially worked using function overloading. The
template specialization could be resolved later once other functions
were added, but the regular function overloads could not. That meant
that it was practically impossible to add new definitions of those two
functions local to the types they worked with.

Also, because C++ does not allow partial specialization of template
functions, it would not be possible to truly use specialization to wire
in BitUnion types.

To fix these problems, these functions have been turned into structs
which wrap static functions. These can be partially specialized as
desired, making them compatible with BitUnions. Also, it's not possible
to overload structures like it is with functions, so only specialization
is considered, not overloading.

While making these changes, these functions (now structs) were also
reworked so that they share implementation more, and are generally
more streamlined.

Given the fact that the previous parseParam and showParam functions
could not actually be expanded beyond serialize.hh, and were not
actually called directly by any code outside of that file, they should
have never been considered part of the API.

Now that these structs actually *can* be specialized outside of this
file, they should be considered part of the interface.

Change-Id: Ic8e677b97fda8378ee1da1f3cf6001e02783fde3
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/36280
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Reviewed-by: Richard Cooper <richard.cooper@arm.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/sim/serialize.hh

index b5fb47ca9cab4d9cc8eb902dd0cf36145aebb510..3adcc5b1aa0ae6f726998887aafc2410ff7c8fdb 100644 (file)
@@ -320,139 +320,131 @@ class Serializable
 
 /**
  * @ingroup api_serialize
+ * @{
  */
-template <class T>
-bool
-parseParam(const std::string &s, T &value)
-{
-    // The base implementations use to_number for parsing and '<<' for
-    // displaying, suitable for integer types.
-    return to_number(s, value);
-}
 
-/**
- * @ingroup api_serialize
- */
-template <class T>
-void
-showParam(CheckpointOut &os, const T &value)
-{
-    os << value;
-}
+// To add support for a new type of field that can be serialized, define
+// template specializations of the two classes below, ParseParam and ShowParam,
+// as described above each. The way ParseParam is specialized for std::string
+// or ShowParam is specialied for bool can be used as examples.
 
-/**
- * @ingroup api_serialize
+/*
+ * A structure which should be specialized to contain a static method with the
+ * signature:
+ *
+ * bool parse(const std::string &s, T &value)
+ *
+ * which fills in value using the contents of s, and returns if that was
+ * successful.
  */
-template <class T>
-bool
-parseParam(const std::string &s, BitUnionType<T> &value)
-{
-    // Zero initialize storage to avoid leaking an uninitialized value
-    BitUnionBaseType<T> storage = BitUnionBaseType<T>();
-    auto res = to_number(s, storage);
-    value = storage;
-    return res;
-}
+template <class T, class Enable=void>
+struct ParseParam;
 
-/**
- * @ingroup api_serialize
- */
+// Specialization for anything to_number can accept.
 template <class T>
-void
-showParam(CheckpointOut &os, const BitUnionType<T> &value)
+struct ParseParam<T, decltype(to_number("", std::declval<T&>()), void())>
 {
-    auto storage = static_cast<BitUnionBaseType<T>>(value);
-
-    // For a BitUnion8, the storage type is an unsigned char.
-    // Since we want to serialize a number we need to cast to
-    // unsigned int
-    os << ((sizeof(storage) == 1) ?
-        static_cast<unsigned int>(storage) : storage);
-}
+    static bool
+    parse(const std::string &s, T &value)
+    {
+        return to_number(s, value);
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
 template <>
-inline void
-showParam(CheckpointOut &os, const char &value)
+struct ParseParam<bool>
 {
-    // Treat 8-bit ints (chars) as ints on output, not as chars
-    os << (int)value;
-}
+    static bool
+    parse(const std::string &s, bool &value)
+    {
+        return to_bool(s, value);
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
 template <>
-inline void
-showParam(CheckpointOut &os, const signed char &value)
+struct ParseParam<std::string>
 {
-    os << (int)value;
-}
+    static bool
+    parse(const std::string &s, std::string &value)
+    {
+        // String requires no processing to speak of
+        value = s;
+        return true;
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
-template <>
-inline void
-showParam(CheckpointOut &os, const unsigned char &value)
+// Specialization for BitUnion types.
+template <class T>
+struct ParseParam<BitUnionType<T>>
 {
-    os << (unsigned int)value;
-}
+    static bool
+    parse(const std::string &s, BitUnionType<T> &value)
+    {
+        // Zero initialize storage to avoid leaking an uninitialized value
+        BitUnionBaseType<T> storage = BitUnionBaseType<T>();
+        auto res = to_number(s, storage);
+        value = storage;
+        return res;
+    }
+};
 
-/**
- * @ingroup api_serialize
+/*
+ * A structure which should be specialized to contain a static method with the
+ * signature:
+ *
+ * void show(std::ostream &os, const T &value)
+ *
+ * which outputs value to the stream os.
+ *
+ * This default implementation falls back to the << operator which should work
+ * for many types.
  */
-template <>
-inline bool
-parseParam(const std::string &s, float &value)
+template <class T, class Enabled=void>
+struct ShowParam
 {
-    return to_number(s, value);
-}
+    static void show(std::ostream &os, const T &value) { os << value; }
+};
 
-/**
- * @ingroup api_serialize
- */
-template <>
-inline bool
-parseParam(const std::string &s, double &value)
+// Handle characters specially so that we print their value, not the character
+// they encode.
+template <class T>
+struct ShowParam<T, std::enable_if_t<std::is_same<char, T>::value ||
+                                     std::is_same<unsigned char, T>::value ||
+                                     std::is_same<signed char, T>::value>>
 {
-    return to_number(s, value);
-}
+    static void
+    show(std::ostream &os, const T &value)
+    {
+        if (std::is_signed<T>::value)
+            os << (int)value;
+        else
+            os << (unsigned int)value;
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
 template <>
-inline bool
-parseParam(const std::string &s, bool &value)
+struct ShowParam<bool>
 {
-    return to_bool(s, value);
-}
+    static void
+    show(std::ostream &os, const bool &value)
+    {
+        // Display bools as strings
+        os << (value ? "true" : "false");
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
-template <>
-inline void
-showParam(CheckpointOut &os, const bool &value)
+template <class T>
+struct ShowParam<BitUnionType<T>>
 {
-    // Display bools as strings
-    os << (value ? "true" : "false");
-}
+    static void
+    show(std::ostream &os, const BitUnionType<T> &value)
+    {
+        ShowParam<BitUnionBaseType<T>>::show(
+                os, static_cast<const BitUnionBaseType<T> &>(value));
+    }
+};
 
-/**
- * @ingroup api_serialize
- */
-template <>
-inline bool
-parseParam(const std::string &s, std::string &value)
-{
-    // String requires no processing to speak of
-    value = s;
-    return true;
-}
+/** @} */
 
 /**
  * This function is used for writing parameters to a checkpoint.
@@ -466,7 +458,7 @@ void
 paramOut(CheckpointOut &os, const std::string &name, const T &param)
 {
     os << name << "=";
-    showParam(os, param);
+    ShowParam<T>::show(os, param);
     os << "\n";
 }
 
@@ -476,7 +468,7 @@ paramInImpl(CheckpointIn &cp, const std::string &name, T &param)
 {
     const std::string &section(Serializable::currentSection());
     std::string str;
-    return cp.find(section, name, str) && parseParam(str, param);
+    return cp.find(section, name, str) && ParseParam<T>::parse(str, param);
 }
 
 /**
@@ -529,11 +521,12 @@ arrayParamOut(CheckpointOut &os, const std::string &name,
 {
     os << name << "=";
     auto it = start;
+    using Elem = std::remove_cv_t<std::remove_reference_t<decltype(*it)>>;
     if (it != end)
-        showParam(os, *it++);
+        ShowParam<Elem>::show(os, *it++);
     while (it != end) {
         os << " ";
-        showParam(os, *it++);
+        ShowParam<Elem>::show(os, *it++);
     }
     os << "\n";
 }
@@ -593,7 +586,8 @@ arrayParamIn(CheckpointIn &cp, const std::string &name,
 
     for (const auto &token: tokens) {
         T value;
-        fatal_if(!parseParam(token, value), "Could not parse \"%s\".", str);
+        fatal_if(!ParseParam<T>::parse(token, value),
+                 "Could not parse \"%s\".", str);
         *inserter = value;
     }
 }