亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在C++ 代碼中怎么獲取函數調用棧信息

發布時間:2021-10-15 09:27:07 來源:億速云 閱讀:491 作者:iii 欄目:編程語言

這篇文章主要介紹“在C++ 代碼中怎么獲取函數調用棧信息”,在日常操作中,相信很多人在在C++ 代碼中怎么獲取函數調用棧信息問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”在C++ 代碼中怎么獲取函數調用棧信息”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、前言

程序在執行過程中 crash 是非常嚴重的問題,一般都應該在測試階段排除掉這些問題,但是總會有漏網之魚被帶到 release 階段。

因此,程序的日志系統需要偵測這種情況,在代碼崩潰的時候獲取函數調用棧信息,為 debug 提供有效的信息。

二、Linux 平臺

1. 注冊異常信號的處理函數

需要處理哪些異常信號

#include <execinfo.h> #include <cxxabi.h> #include <signal.h>  const std::map<int, std::string> Signals = {     {SIGINT, "SIGINT"},         {SIGABRT, "SIGABRT"},      {SIGFPE, "SIGFPE"},        {SIGILL, "SIGILL"},       {SIGSEGV, "SIGSEGV"}     // 可以添加其他信號 };

注冊信號處理函數

struct sigaction action; sigemptyset(&action.sa_mask); action.sa_sigaction = &sigHandler; action.sa_flags = SA_SIGINFO;    for (const auto &sigPair : Signals)  {     if (sigaction(sigPair.first, &action, NULL) < 0)         fprintf(stderr, "Error: sigaction failed! \n");  }

2. 捕獲異常,獲取函數調用棧信息

void sigHandler(int signum, siginfo_t *info, void *ctx) {     const size_t dump_size = 50;     void *array[dump_size];     int size = backtrace(array, dump_size);     char **symbols = backtrace_symbols(array, size);     std::ostringstream oss;      for (int i = 0; i < size; ++i)     {         char *mangleName = 0;         char *offsetBegin = 0;         char *offsetEnd = 0;          for (char *p = symbols[i]; *p; ++p)         {             if ('(' == *p)             {                     mangleName = p;             }                else if ('+' == *p)             {                 offsetBegin = p;             }             else if (')' == *p)             {                 offsetEnd = p;                 break;             }         }          if (mangleName && offsetBegin && offsetEnd && mangleName < offsetBegin)         {             *mangleName++ = '\0';             *offsetBegin++ = '\0';             *offsetEnd++ = '\0';                          int status;             char *realName = abi::__cxa_demangle(mangleName, 0, 0, &status);             if (0 == status)                 oss << "\tstack dump [" << i << "]  " << symbols[i] << " : " << realName << "+";             else                 oss << "\tstack dump [" << i << "]  " << symbols[i] << mangleName << "+";             oss << offsetBegin << offsetEnd << std::endl;             free(realName);         }         else         {             oss << "\tstack dump [" << i << "]  " << symbols[i] << std::endl;         }     }     free(symbols);     oss << std::endl;     std::cout << oss.str(); // 打印函數調用棧信息 }

三、Windwos 平臺

在 Windows 平臺下的代碼實現,參考了國外某個老兄的代碼,如下:

1. 設置異常處理函數

#include <windows.h> #include <dbghelp.h>  SetUnhandledExceptionFilter(exceptionHandler);

2. 捕獲異常,獲取函數調用棧信息

void exceptionHandler(LPEXCEPTION_POINTERS info) {     CONTEXT *context = info->ContextRecord;     std::shared_ptr<void> RaiiSysCleaner(nullptr, [&](void *) {       SymCleanup(GetCurrentProcess());     });    const size_t dumpSize = 64;   std::vector<uint64_t> frameVector(dumpSize);    DWORD machine_type = 0;   STACKFRAME64 frame = {};   frame.AddrPC.Mode = AddrModeFlat;   frame.AddrFrame.Mode = AddrModeFlat;   frame.AddrStack.Mode = AddrModeFlat;  #ifdef _M_IX86   frame.AddrPC.Offset = context->Eip;   frame.AddrFrame.Offset = context->Ebp;   frame.AddrStack.Offset = context->Esp;   machine_type = IMAGE_FILE_MACHINE_I386; #elif _M_X64   frame.AddrPC.Offset = context->Rip;   frame.AddrFrame.Offset = context->Rbp;   frame.AddrStack.Offset = context->Rsp;   machine_type = IMAGE_FILE_MACHINE_AMD64; #elif _M_IA64   frame.AddrPC.Offset = context->StIIP;   frame.AddrFrame.Offset = context->IntSp;   frame.AddrStack.Offset = context->IntSp;   machine_type = IMAGE_FILE_MACHINE_IA64;   frame.AddrBStore.Offset = context.RsBSP;   frame.AddrBStore.Mode = AddrModeFlat; #else   frame.AddrPC.Offset = context->Eip;   frame.AddrFrame.Offset = context->Ebp;   frame.AddrStack.Offset = context->Esp;   machine_type = IMAGE_FILE_MACHINE_I386; #endif    for (size_t index = 0; index < frameVector.size(); ++index)   {     if (StackWalk64(machine_type,            GetCurrentProcess(),            GetCurrentThread(),            &frame,            context,            NULL,            SymFunctionTableAccess64,            SymGetModuleBase64,            NULL)) {       frameVector[index] = frame.AddrPC.Offset;     } else {       break;     }   }    std::string dump;   const size_t kSize = frameVector.size();   for (size_t index = 0; index < kSize && frameVector[index]; ++index) {     dump += getSymbolInfo(index, frameVector);     dump += "\n";   }  std::cout << dump;  }

主要是利用了 StackWalk64 這個函數,從地址轉換為函數名稱。

到此,關于“在C++ 代碼中怎么獲取函數調用棧信息”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邵阳市| 宜良县| 綦江县| 灌南县| 阳江市| 吉安市| 印江| 郧西县| 岫岩| 德清县| 沅江市| 满城县| 和平县| 赤壁市| 铜梁县| 陇南市| 木里| 临安市| 漳平市| 玉山县| 威海市| 无棣县| 巢湖市| 江源县| 迁安市| 荔浦县| 上蔡县| 鸡东县| 博湖县| 汤阴县| 南投市| 泰和县| 察雅县| 阿巴嘎旗| 九寨沟县| 宾阳县| 吴旗县| 扎鲁特旗| 广汉市| 视频| 五河县|