X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d2995483b57463581ffdc4365fe1999ddc306c2..49c5a6cf5ad0b5cab623499ba1b4505cd367e452:/src/mc/mc_mmu.hpp diff --git a/src/mc/mc_mmu.hpp b/src/mc/mc_mmu.hpp index bb4d900e9f..d1c2e02bfd 100644 --- a/src/mc/mc_mmu.hpp +++ b/src/mc/mc_mmu.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2022. 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. */ @@ -13,29 +13,22 @@ #define XBT_ALWAYS_INLINE inline __attribute__((always_inline)) #endif -/** Cache the size of a memory page for the current system. */ +/** Size of a memory page for the current system. */ extern "C" int xbt_pagesize; -/** Cache the number of bits of addresses inside a given page, log2(xbt_pagesize). */ +/** Number of bits of addresses inside a given page, log2(xbt_pagesize). */ extern "C" int xbt_pagebits; -namespace simgrid { -namespace mc { +namespace simgrid::mc::mmu { // TODO, do not depend on xbt_pagesize/xbt_pagebits but our own chunk size -namespace mmu { - -static int chunkSize() -{ - return xbt_pagesize; -} /** @brief How many memory pages are necessary to store size bytes? * * @param size Byte size * @return Number of memory pages */ -static XBT_ALWAYS_INLINE std::size_t chunkCount(std::size_t size) +static XBT_ALWAYS_INLINE std::size_t chunk_count(std::size_t size) { - size_t page_count = size >> xbt_pagebits; + std::size_t page_count = size >> xbt_pagebits; if (size & (xbt_pagesize - 1)) page_count++; return page_count; @@ -47,7 +40,7 @@ static XBT_ALWAYS_INLINE std::pair split(std::uintp return {offset >> xbt_pagebits, offset & (xbt_pagesize - 1)}; } -/** Merge chunk number and remaining offset info a global offset */ +/** Merge chunk number and remaining offset into a global offset */ static XBT_ALWAYS_INLINE std::uintptr_t join(std::size_t page, std::uintptr_t offset) { return ((std::uintptr_t)page << xbt_pagebits) + offset; @@ -58,12 +51,10 @@ static XBT_ALWAYS_INLINE std::uintptr_t join(std::pair> xbt_pagebits) == (b >> xbt_pagebits); } -} -} -} +} // namespace simgrid::mc::mmu #endif