Searched defs:backtrace_frame_data_t (Results 1 – 1 of 1) sorted by relevance
84 struct backtrace_frame_data_t { struct85 size_t num; // The current fame number.86 uint64_t pc; // The absolute pc.87 uint64_t rel_pc; // The relative pc.88 uint64_t sp; // The top of the stack.89 size_t stack_size; // The size of the stack, zero indicate an unknown stack size.90 backtrace_map_t map; // The map associated with the given pc.91 std::string func_name; // The function name associated with this pc, NULL if not found.92 uint64_t func_offset; // pc relative to the start of the function, only valid if func_name is not