Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d24ebe97d12cdeda54eb6552d2146b1688216e7e
[simgrid.git] / src / mc / inspect / mc_dwarf.hpp
1 /* Copyright (c) 2008-2019. 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 {
14 namespace dwarf {
15
16 XBT_PRIVATE const char* attrname(int attr);
17 XBT_PRIVATE const char* tagname(int tag);
18
19 XBT_PRIVATE void* resolve_member(const void* base, simgrid::mc::Type* type, simgrid::mc::Member* member,
20                                  const simgrid::mc::AddressSpace* snapshot);
21
22 XBT_PRIVATE
23 int dwarf_register_to_libunwind(int dwarf_register);
24
25 } // namespace dwarf
26 } // namespace simgrid
27
28 #endif