Lines Matching +defs:process +defs:name

133   Process *process = exe_ctx.GetProcessPtr();
140 if (ABISP abi_sp = process->GetABI())
151 m_current_pc.SetLoadAddress(current_pc, &process->GetTarget());
165 UnwindLogMsg("with pc value of 0x%" PRIx64 ", symbol name is '%s'",
168 UnwindLogMsg("with pc value of 0x%" PRIx64 ", function name is '%s'",
172 ", no symbol/function name is known.",
176 if (IsTrapHandlerSymbol(process, m_sym_ctx)) {
278 process->GetTarget(), m_thread);
333 Process *process = exe_ctx.GetProcessPtr();
357 ABISP abi_sp = process->GetABI();
392 m_current_pc.SetLoadAddress(pc, &process->GetTarget(), allow_section_end);
408 if (process->GetLoadAddressPermissions(pc, permissions) &&
467 if (process->GetLoadAddressPermissions(m_cfa, permissions) &&
504 UnwindLogMsg("with pc value of 0x%" PRIx64 ", symbol name is '%s'", pc,
507 UnwindLogMsg("with pc value of 0x%" PRIx64 ", function name is '%s'", pc,
511 ", no symbol/function name is known.",
534 } else if (IsTrapHandlerSymbol(process, m_sym_ctx)) {
558 temporary_pc.SetLoadAddress(pc - 1, &process->GetTarget());
571 m_current_offset = pc - m_start_pc.GetLoadAddress(&process->GetTarget());
577 m_current_pc.SetLoadAddress(pc - 1, &process->GetTarget());
586 if (IsTrapHandlerSymbol(process, m_sym_ctx)) {
801 Process *process = exe_ctx.GetProcessPtr();
802 ABI *abi = process ? process->GetABI().get() : nullptr;
835 (process &&
836 process->GetLoadAddressPermissions(current_pc_addr, permissions) &&
911 if (m_frame_type == eTrapHandlerFrame && process) {
918 lldb::PlatformSP platform = process->GetTarget().GetPlatform();
920 process->GetTarget().GetArchitecture().GetTriple(),
928 func_unwinders_sp->GetEHFrameUnwindPlan(process->GetTarget());
931 func_unwinders_sp->GetObjectFileUnwindPlan(process->GetTarget());
946 if (process && process->GetDynamicLoader() &&
947 process->GetDynamicLoader()->AlwaysRelyOnEHUnwindInfo(m_sym_ctx)) {
953 func_unwinders_sp->GetEHFrameUnwindPlan(process->GetTarget());
956 func_unwinders_sp->GetObjectFileUnwindPlan(process->GetTarget());
967 if (m_behaves_like_zeroth_frame && process) {
969 process->GetTarget(), m_thread);
984 func_unwinders_sp->GetUnwindPlanAtCallSite(process->GetTarget(),
1020 if (process) {
1022 process->GetTarget(), m_thread);
1034 if (process) {
1036 process->GetTarget(), m_thread);
1051 func_unwinders_sp->GetUnwindPlanAtCallSite(process->GetTarget(),
1225 // program in the process of getting back on track.
1232 lldb_private::Process *process,
1234 PlatformSP platform_sp(process->GetTarget().GetPlatform());
1238 for (ConstString name : trap_handler_names) {
1239 if ((m_sym_ctx.function && m_sym_ctx.function->GetName() == name) ||
1240 (m_sym_ctx.symbol && m_sym_ctx.symbol->GetName() == name)) {
1247 for (ConstString name : user_specified_trap_handler_names) {
1248 if ((m_sym_ctx.function && m_sym_ctx.function->GetName() == name) ||
1249 (m_sym_ctx.symbol && m_sym_ctx.symbol->GetName() == name)) {
1493 Process *process = exe_ctx.GetProcessPtr();
1499 ABI *abi = process ? process->GetABI().get() : nullptr;
1659 process->GetByteOrder(),
1660 process->GetAddressByteSize());
1960 Process *process = exe_ctx.GetProcessPtr();
1961 Target *target = &process->GetTarget();
2038 Process *process = exe_ctx.GetProcessPtr();
2041 process->GetByteOrder(),
2042 process->GetAddressByteSize());
2063 Process &process = *m_thread.GetProcess();
2071 return_address_hint + i * process.GetAddressByteSize();
2073 process.ReadPointerFromMemory(candidate_addr, st);
2081 if (process.GetLoadAddressPermissions(candidate, permissions) &&