X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d098dd9e12ee321b061421f535b2b56ce7691673..b41c921fc0a6a13f5db4d6cefb9b6955d5f21e3b:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index ba391fab58..d23fe6915d 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -1,16 +1,17 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include - #include -#include "src/mc/mc_private.h" +#include "xbt/log.h" + #include "mc/datatypes.h" #include "src/mc/mc_hash.hpp" +#include "src/mc/mc_private.hpp" +#include "src/mc/sosp/Snapshot.hpp" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash"); @@ -21,12 +22,13 @@ namespace mc { namespace { class djb_hash { - hash_type state_ = 5381ll; + hash_type state_ = 5381LL; + public: template void update(T& x) { - state_ = (state_ << 5) + state_ + (std::uint64_t) value; + state_ = (state_ << 5) + state_ + x; } hash_type value() { @@ -38,14 +40,15 @@ public: hash_type hash(Snapshot const& snapshot) { - XBT_DEBUG("START hash %i", snapshot.num_state); + XBT_DEBUG("START hash %i", snapshot.num_state_); djb_hash hash; - // TODO, nb_processes - // TODO, heap_bytes_used - // TODO, root variables - // TODO, basic stack frame information - // TODO, stack frame local variables - XBT_DEBUG("END hash %i", snapshot.num_state); + // TODO: + // * nb_processes + // * heap_bytes_used + // * root variables + // * basic stack frame information + // * stack frame local variables + XBT_DEBUG("END hash %i", snapshot.num_state_); return hash.value(); }