Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / mc / inspect / mc_dwarf.hpp
1 /* Copyright (c) 2008-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_DWARF_HPP
7 #define SIMGRID_MC_DWARF_HPP
8
9 #include "xbt/base.h"
10
11 #include "src/mc/mc_forward.hpp"
12
13 namespace simgrid::dwarf {
14
15 XBT_PRIVATE const char* attrname(int attr);
16 XBT_PRIVATE const char* tagname(int tag);
17
18 XBT_PRIVATE void* resolve_member(const void* base, const simgrid::mc::Type* type, const simgrid::mc::Member* member,
19                                  const simgrid::mc::AddressSpace* snapshot);
20
21 XBT_PRIVATE
22 int dwarf_register_to_libunwind(int dwarf_register);
23
24 } // namespace simgrid::dwarf
25
26 #endif