Home
last modified time | relevance | path

Searched refs:exc_data (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DMachException.h52 std::vector<mach_exception_data_type_t> exc_data; member
55 exc_data() {} in Data()
61 exc_data.clear(); in Clear()
72 if (exc_type == EXC_SOFTWARE && exc_data.size() == 2 && in SoftSignal()
73 exc_data[0] == EXC_SOFT_SIGNAL) in SoftSignal()
74 return static_cast<int>(exc_data[1]); in SoftSignal()
80 ((exc_type == EXC_SOFTWARE) && exc_data[0] == 1)); in IsBreakpoint()
H A DMachException.cpp74 (uint64_t)exc_data, exc_data_count); in catch_mach_exception_raise_state()
81 exception_type_t exc_type, mach_exception_data_t exc_data, in catch_mach_exception_raise_state_identity() argument
92 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD), in catch_mach_exception_raise_state_identity()
93 (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD)); in catch_mach_exception_raise_state_identity()
102 mach_exception_data_t exc_data, in catch_mach_exception_raise() argument
111 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD), in catch_mach_exception_raise()
119 g_message->exc_data.resize(exc_data_count); in catch_mach_exception_raise()
120 ::memcpy(&g_message->exc_data[0], exc_data, in catch_mach_exception_raise()
153 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo()
168 "0x%llx%c", (uint64_t)exc_data[idx], in GetStopInfo()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1805 const std::vector<addr_t> &exc_data, addr_t thread_dispatch_qaddr, in SetThreadStopInfo() argument
1875 const size_t exc_data_size = exc_data.size(); in SetThreadStopInfo()
1880 exc_data_size >= 1 ? exc_data[0] : 0, in SetThreadStopInfo()
1881 exc_data_size >= 2 ? exc_data[1] : 0, in SetThreadStopInfo()
1882 exc_data_size >= 3 ? exc_data[2] : 0)); in SetThreadStopInfo()
2081 std::vector<addr_t> exc_data; in SetThreadStopInfo() local
2111 exc_data.push_back(object->GetIntegerValue()); in SetThreadStopInfo()
2201 reason, description, exc_type, exc_data, in SetThreadStopInfo()
2238 std::vector<addr_t> exc_data; in SetThreadStopInfo() local
2256 exc_data.push_back(x); in SetThreadStopInfo()
[all …]
H A DProcessGDBRemote.h390 const std::vector<lldb::addr_t> &exc_data,