sim: Turn InitParamKey into an anonymous namespace

As part of recent decisions regarding namespace
naming conventions, all namespaces will be changed
to snake case.

pseudo_inst::InitParamKey became an anonymous namespace.

Change-Id: I4a9275a1745e1ed78db0ec99dc91f03ad6d5dfac
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/45430
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Maintainer: Gabe Black <gabe.black@gmail.com>
This commit is contained in:
Daniel R. Carvalho
2021-05-07 14:09:24 -03:00
committed by Daniel Carvalho
parent e42d2a4789
commit 205a9fb39c

View File

@@ -81,7 +81,7 @@ namespace pseudo_inst
* @note Each key may be at most 16 characters (because we use
* two 64-bit registers to pass in the key to the initparam function).
*/
namespace InitParamKey
namespace
{
/**
@@ -97,7 +97,7 @@ const std::string DIST_RANK = "dist-rank";
*/
const std::string DIST_SIZE = "dist-size";
} // namespace InitParamKey
} // anonymous namespace
void
arm(ThreadContext *tc)
@@ -286,11 +286,11 @@ initParam(ThreadContext *tc, uint64_t key_str1, uint64_t key_str2)
// Check key parameter to figure out what to return.
const std::string key_str(key);
if (key == InitParamKey::DEFAULT)
if (key == DEFAULT)
return tc->getCpuPtr()->system->init_param;
else if (key == InitParamKey::DIST_RANK)
else if (key == DIST_RANK)
return DistIface::rankParam();
else if (key == InitParamKey::DIST_SIZE)
else if (key == DIST_SIZE)
return DistIface::sizeParam();
else
panic("Unknown key for initparam pseudo instruction:\"%s\"", key_str);