X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/743770fb87bf6ed74488728208c0a411a0063e7d..1363ce9624f4327f3ad5c934b15736a776637dfd:/tools/generate-dwarf-functions diff --git a/tools/generate-dwarf-functions b/tools/generate-dwarf-functions index 959ba55df6..838d833f62 100755 --- a/tools/generate-dwarf-functions +++ b/tools/generate-dwarf-functions @@ -3,31 +3,29 @@ # Usage: tools/generate-dwarf-functions /usr/include/dwarf.h HEADER="\ -/* Copyright (c) 2014-$(date +%Y). The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-$(date +%Y). 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. */ /* Warning: autogenerated, do not edit! */ -#include -#include +#include \"src/mc/inspect/mc_dwarf.hpp\" -#include \"src/mc/mc_dwarf.hpp\"" +#include +#include " -cat - > src/mc/mc_dwarf_tagnames.cpp < src/mc/inspect/mc_dwarf_tagnames.cpp < tagname_map = { {0x00, "DW_TAG_invalid"}, -$(grep DW_TAG_ -- "$1" | sed 's/.*\(DW_TAG_[^ ]*\) = \(0x[0-9a-f]*\).*/ {\2, "\1"},/') +$(sed -n 's/.*\(DW_TAG_[^ ]*\) = \(0x[0-9a-f]*\).*/ {\2, "\1"},/p' -- "$1") }; } -namespace simgrid { -namespace dwarf { +namespace simgrid::dwarf { /** @brief Get the name of a dwarf tag (DW_TAG_*) from its code * @@ -35,27 +33,25 @@ namespace dwarf { * @return name of the tag */ XBT_PRIVATE -const char *tagname(int tag) +const char* tagname(int tag) { auto name = tagname_map.find(tag); return name == tagname_map.end() ? "DW_TAG_unknown" : name->second; } -} -} +} // namespace simgrid::dwarf EOF -cat - > src/mc/mc_dwarf_attrnames.cpp << EOF +cat - > src/mc/inspect/mc_dwarf_attrnames.cpp << EOF $HEADER namespace { const std::unordered_map attrname_map = { -$(grep DW_AT_ -- "$1" | sed 's/.*\(DW_AT_[^ ]*\) = \(0x[0-9a-f]*\).*/ {\2, "\1"},/') +$(sed -n 's/.*\(DW_AT_[^ ]*\) = \(0x[0-9a-f]*\).*/ {\2, "\1"},/p' -- "$1") }; } -namespace simgrid { -namespace dwarf { +namespace simgrid::dwarf { /** @brief Get the name of an attribute (DW_AT_*) from its code * @@ -63,12 +59,11 @@ namespace dwarf { * @return name of the attribute */ XBT_PRIVATE -const char *attrname(int attr) +const char* attrname(int attr) { auto name = attrname_map.find(attr); return name == attrname_map.end() ? "DW_AT_unknown" : name->second; } -} -} +} // namespace simgrid::dwarf EOF