X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d656f9465e7b1c36319f86eeafdcec58fe9551a4..2807fde4fd1f59c230d69a934634c5dfb77905f2:/src/mc/mc_global.cpp diff --git a/src/mc/mc_global.cpp b/src/mc/mc_global.cpp index 0e86c470ec..b14329839c 100644 --- a/src/mc/mc_global.cpp +++ b/src/mc/mc_global.cpp @@ -13,6 +13,7 @@ #include #include "xbt/automaton.h" +#include "xbt/backtrace.hpp" #include "xbt/dynar.h" #include "xbt/swag.h" @@ -47,6 +48,8 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc, "Logging specific to MC (global)"); +extern std::string _sg_mc_dot_output_file; + namespace simgrid { namespace mc { @@ -76,7 +79,7 @@ FILE *dot_output = nullptr; void MC_init_dot_output() { - dot_output = fopen(_sg_mc_dot_output_file, "w"); + dot_output = fopen(_sg_mc_dot_output_file.c_str(), "w"); if (dot_output == nullptr) { perror("Error open dot output file"); @@ -134,24 +137,20 @@ void dumpStack(FILE* file, unw_cursor_t cursor) unw_word_t off; do { const char* name = not unw_get_proc_name(&cursor, buffer, 100, &off) ? buffer : "?"; - - int status; - // Unmangle C++ names: - char* realname = abi::__cxa_demangle(name, 0, 0, &status); + auto realname = simgrid::xbt::demangle(name); #if defined(__x86_64__) unw_word_t rip = 0; unw_word_t rsp = 0; unw_get_reg(&cursor, UNW_X86_64_RIP, &rip); unw_get_reg(&cursor, UNW_X86_64_RSP, &rsp); - fprintf(file, " %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", - nframe, realname ? realname : name, (std::uint64_t) rip, (std::uint64_t) rsp); + fprintf(file, " %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", nframe, realname.get(), (std::uint64_t)rip, + (std::uint64_t)rsp); #else - fprintf(file, " %i: %s\n", nframe, realname ? realname : name); + fprintf(file, " %i: %s\n", nframe, realname.get()); #endif - free(realname); ++nframe; } while(unw_step(&cursor)); } @@ -163,7 +162,8 @@ static void MC_dump_stacks(FILE* file) { int nstack = 0; for (auto const& stack : mc_model_checker->process().stack_areas()) { - fprintf(file, "Stack %i:\n", nstack++); + fprintf(file, "Stack %i:\n", nstack); + nstack++; simgrid::mc::UnwindContext context; unw_context_t raw_context =