| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBreakpointLocation.cpp | 91 loc_sp->GetTarget().GetAPIMutex()); in GetLoadAddress() 104 loc_sp->GetTarget().GetAPIMutex()); in SetEnabled() 115 loc_sp->GetTarget().GetAPIMutex()); in IsEnabled() 127 loc_sp->GetTarget().GetAPIMutex()); in GetHitCount() 139 loc_sp->GetTarget().GetAPIMutex()); in GetIgnoreCount() 175 loc_sp->GetTarget().GetAPIMutex()); in GetCondition() 235 .GetTarget() in SetScriptCallbackFunction() 262 .GetTarget() in SetScriptCallbackBody() 284 loc_sp->GetTarget().GetAPIMutex()); in SetCommandLineCommands() 372 loc_sp->GetTarget().GetAPIMutex()); in GetThreadName() [all …]
|
| H A D | SBBreakpointName.cpp | 55 TargetSP GetTarget() const { in GetTarget() function in lldb::SBBreakpointNameImpl 101 TargetSP target_sp = GetTarget(); in GetBreakpointName() 130 Target &target = bkpt_sp->GetTarget(); in SBBreakpointName() 213 m_impl_up->GetTarget()->GetAPIMutex()); in SetEnabled() 222 TargetSP target_sp = m_impl_up->GetTarget(); in UpdateName() 237 m_impl_up->GetTarget()->GetAPIMutex()); in IsEnabled() 318 m_impl_up->GetTarget()->GetAPIMutex()); in GetCondition() 426 m_impl_up->GetTarget()->GetAPIMutex()); in GetThreadName() 454 m_impl_up->GetTarget()->GetAPIMutex()); in GetQueueName() 574 error = m_impl_up->GetTarget() in SetScriptCallbackFunction() [all …]
|
| H A D | SBBreakpoint.cpp | 80 SBTarget SBBreakpoint::GetTarget() const { in GetTarget() function in SBBreakpoint 123 bkpt_sp->GetTarget().GetAPIMutex()); in ClearAllBreakpointSites() 139 Target &target = bkpt_sp->GetTarget(); in FindLocationByAddress() 157 bkpt_sp->GetTarget().GetAPIMutex()); in FindLocationIDByAddress() 159 Target &target = bkpt_sp->GetTarget(); in FindLocationIDByAddress() 290 bkpt_sp->GetTarget().GetAPIMutex()); in GetCondition() 418 bkpt_sp->GetTarget().GetAPIMutex()); in GetThreadName() 445 bkpt_sp->GetTarget().GetAPIMutex()); in GetQueueName() 489 bkpt_sp->GetTarget().GetAPIMutex()); in SetCommandLineCommands() 617 error = bkpt_sp->GetTarget() in SetScriptCallbackFunction() [all …]
|
| H A D | SBProcess.cpp | 136 process_sp->GetTarget().GetAPIMutex()); in RemoteLaunch() 168 process_sp->GetTarget().GetAPIMutex()); in RemoteAttachToProcessWithID() 194 process_sp->GetTarget().GetAPIMutex()); in GetNumThreads() 209 process_sp->GetTarget().GetAPIMutex()); in GetSelectedThread() 226 process_sp->GetTarget().GetAPIMutex()); in CreateOSPluginThread() 234 SBTarget SBProcess::GetTarget() const { in GetTarget() function in SBProcess 349 process_sp->GetTarget().GetAPIMutex()); in SetSelectedThread() 363 process_sp->GetTarget().GetAPIMutex()); in SetSelectedThreadByID() 516 process_sp->GetTarget().GetAPIMutex()); in GetExitDescription() 1150 process_sp->GetTarget().GetAPIMutex()); in IsInstrumentationRuntimePresent() [all …]
|
| H A D | SBWatchpoint.cpp | 112 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchAddress() 127 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchSize() 139 Target &target = watchpoint_sp->GetTarget(); in SetEnabled() 160 watchpoint_sp->GetTarget().GetAPIMutex()); in IsEnabled() 173 watchpoint_sp->GetTarget().GetAPIMutex()); in GetHitCount() 186 watchpoint_sp->GetTarget().GetAPIMutex()); in GetIgnoreCount() 198 watchpoint_sp->GetTarget().GetAPIMutex()); in SetIgnoreCount() 211 watchpoint_sp->GetTarget().GetAPIMutex()); in GetCondition() 221 watchpoint_sp->GetTarget().GetAPIMutex()); in SetCondition() 235 watchpoint_sp->GetTarget().GetAPIMutex()); in GetDescription() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepRange.cpp | 43 m_use_fast_step = GetTarget().GetUseFastStepping(); in ThreadPlanStepRange() 134 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange() 153 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange() 163 &GetTarget()) != pc_load_addr) { in InRange() 176 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange() 200 cur_pc, &GetTarget()); in InSymbol() 204 return range.ContainsLoadAddress(cur_pc, &GetTarget()); in InSymbol() 259 if (m_address_ranges[i].ContainsLoadAddress(addr, &GetTarget())) { in GetInstructionsForAddress() 269 GetTarget().GetArchitecture(), plugin_name, flavor, GetTarget(), in GetInstructionsForAddress() 282 .GetIndexOfInstructionAtLoadAddress(addr, GetTarget()); in GetInstructionsForAddress() [all …]
|
| H A D | ProcessTrace.cpp | 106 return GetTarget().GetArchitecture(); in GetArchitecture() 113 ModuleSP module_sp = GetTarget().GetExecutableModule(); in GetProcessInfo() 116 info.SetExecutableFile(GetTarget().GetExecutableModule()->GetFileSpec(), in GetProcessInfo() 125 GetTarget().GetSectionLoadList().ResolveLoadAddress(addr, resolved_address); in DoReadMemory() 127 return GetTarget().ReadMemoryFromFileCache(resolved_address, buf, size, in DoReadMemory()
|
| H A D | ThreadPlanStepOut.cpp | 121 m_return_addr = return_address.GetLoadAddress(&m_process.GetTarget()); in ThreadPlanStepOut() 142 GetTarget().CreateBreakpoint(m_return_addr, true, false).get(); in ThreadPlanStepOut() 192 GetTarget().RemoveBreakpointByID(m_return_bp_id); in ~ThreadPlanStepOut() 207 if (tmp_address.SetLoadAddress(m_step_from_insn, &GetTarget())) { in GetDescription() 219 if (tmp_address.SetLoadAddress(m_return_addr, &GetTarget())) { in GetDescription() 401 Breakpoint *return_bp = GetTarget().GetBreakpointByID(m_return_bp_id).get(); in DoWillResume() 410 Breakpoint *return_bp = GetTarget().GetBreakpointByID(m_return_bp_id).get(); in WillStop() 431 GetTarget().RemoveBreakpointByID(m_return_bp_id); in MischiefManaged() 467 inlined_sc.target_sp = GetTarget().shared_from_this(); in QueueInlinedStepPlan()
|
| H A D | ThreadPlanRunToAddress.cpp | 52 Target &target = thread.GetProcess()->GetTarget(); in ThreadPlanRunToAddress() 67 GetTarget().CreateBreakpoint(m_addresses[i], true, false).get(); in SetInitialBreakpoints() 81 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in ~ThreadPlanRunToAddress() 122 GetTarget().GetBreakpointByID(m_break_ids[i]).get(); in GetDescription() 181 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in MischiefManaged()
|
| H A D | Process.cpp | 896 &process_sp->GetTarget()) { in HandleProcessStateChangedEvent() 1184 Target &target = GetTarget(); in UpdateThreadListIfNeeded() 1667 symbol->GetLoadAddress(&GetTarget()), in CreateBreakpointSite() 2535 error = GetTarget().Install(&launch_info); in LaunchPrivate() 2940 GetTarget().SetArchitecture(process_arch); in CompleteAttach() 2965 GetTarget().SetPlatform(platform_sp); in CompleteAttach() 2980 GetTarget().SetArchitecture(process_arch); in CompleteAttach() 4138 if (process_sp->GetTarget().RunStopHooks()) in DoOnRemoval() 4259 exe_ctx.SetTargetPtr(&GetTarget()); in CalculateExecutionContext() 5758 Target &target = GetTarget(); in DidExec() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ |
| H A D | DynamicLoaderWindowsDYLD.cpp | 51 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance() 69 module_sp = m_process->GetTarget().GetOrCreateModule(module_spec, in OnLoadModule() 79 m_process->GetTarget().ModulesDidLoad(module_list); in OnLoadModule() 84 if (!m_process->GetTarget().ResolveLoadAddress(module_addr, resolved_addr)) in OnUnloadModule() 93 m_process->GetTarget().ModulesDidUnload(module_list, false); in OnUnloadModule() 145 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach() 165 m_process->GetTarget().ModulesDidLoad(module_list); in DidLaunch() 176 auto arch = m_process->GetTarget().GetArchitecture(); in GetStepThroughTrampolinePlan() 186 arch, nullptr, nullptr, m_process->GetTarget(), range); in GetStepThroughTrampolinePlan() 205 ExecutionContext exe_ctx(m_process->GetTarget()); in GetStepThroughTrampolinePlan()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 31 process->GetTarget().GetArchitecture().GetTriple(); in LLDB_PLUGIN_DEFINE() 49 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE() 80 const ModuleList &module_list = m_process->GetTarget().GetImages(); in LoadAllImagesAtFileAddresses() 112 if (m_process->GetTarget() in LoadAllImagesAtFileAddresses() 118 if (m_process->GetTarget().SetSectionLoadAddress( in LoadAllImagesAtFileAddresses() 131 m_process->GetTarget().ModulesDidLoad(loaded_module_list); in LoadAllImagesAtFileAddresses()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 53 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance() 76 m_process->GetTarget().RemoveBreakpointByID(m_dyld_bid); in ~DynamicLoaderPOSIXDYLD() 116 Target &target = m_process->GetTarget(); in DidAttach() 143 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach() 195 m_process->GetTarget().ModulesDidLoad(module_list); in DidLaunch() 321 Target &target = m_process->GetTarget(); in SetRendezvousBreakpoint() 468 m_process->GetTarget().ModulesDidLoad(new_modules); in RefreshModules() 506 Target &target = thread.GetProcess()->GetTarget(); in GetStepThroughTrampolinePlan() 562 Target &target = m_process->GetTarget(); in LoadInterpreterModule() 659 m_process->GetTarget().ModulesDidLoad(module_list); in LoadAllCurrentModules() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 53 ModuleSP module = proc->GetTarget().GetExecutableModule(); in LLDB_PLUGIN_DEFINE() 69 return addr.GetLoadAddress(&proc->GetTarget()); in LLDB_PLUGIN_DEFINE() 92 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance() 148 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach() 164 Target &target = m_process->GetTarget(); in GetTargetExecutable() 211 Target &target = m_process->GetTarget(); in UpdateLoadedSections() 242 Target &target = m_process->GetTarget(); in UnloadSections() 268 Target &target = m_process->GetTarget(); in SetRendezvousBreakpoint() 373 m_process->GetTarget().ModulesDidLoad(new_modules); in RefreshModules() 419 Target &target = thread.GetProcess()->GetTarget(); in GetStepThroughTrampolinePlan() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
| H A D | DynamicLoaderFreeBSDKernel.cpp | 103 Module *exec = process->GetTarget().GetExecutableModulePointer(); in CreateInstance() 110 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance() 227 process->GetTarget().SetArchitecture(kernel_arch); in CheckForKernelImageAtAddress() 327 Target &target = process->GetTarget(); in LoadImageUsingMemoryModule() 542 ModuleList &modules = m_process->GetTarget().GetImages(); in ParseKmods() 553 m_process->GetTarget().ModulesDidUnload(remove_modules, false); in ParseKmods() 571 m_process->GetTarget().ModulesDidLoad(add_modules); in ParseKmods() 605 &m_process->GetTarget()), in ReadAllKmods() 616 &m_process->GetTarget()), in ReadAllKmods() 623 &m_process->GetTarget()), in ReadAllKmods() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 52 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress() 67 Target &BreakpointLocation::GetTarget() { return m_owner.GetTarget(); } in GetTarget() function in BreakpointLocation 262 m_user_expression_sp.reset(GetTarget().GetUserExpressionForLanguage( in ConditionSaysStop() 446 Process *process = m_owner.GetTarget().GetProcessSP().get(); in ResolveBreakpointSite() 457 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget())); in ResolveBreakpointSite() 471 ProcessSP process_sp(m_owner.GetTarget().GetProcessSP()); in ClearBreakpointSite() 517 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription() 568 Target *target = &m_owner.GetTarget(); in GetDescription() 638 (uint64_t)m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()), in Dump() 650 m_owner.GetTarget().EventTypeHasListeners( in SendBreakpointLocationChangedEvent() [all …]
|
| H A D | WatchpointList.cpp | 25 if (wp_sp->GetTarget().EventTypeHasListeners( in Add() 29 wp_sp->GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged, in Add() 175 if (wp_sp->GetTarget().EventTypeHasListeners( in Remove() 179 wp_sp->GetTarget().BroadcastEvent( in Remove() 238 if ((*pos)->GetTarget().EventTypeHasListeners( in RemoveAll() 242 (*pos)->GetTarget().BroadcastEvent( in RemoveAll()
|
| H A D | BreakpointResolverAddress.cpp | 126 Target &target = breakpoint.GetTarget(); in SearchCallback() 136 m_resolved_addr = m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 147 m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 164 m_addr.Dump(s, GetBreakpoint()->GetTarget().GetProcessSP().get(), in GetDescription()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | InferiorCallPOSIX.cpp | 49 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap() 84 process->GetTarget().GetScratchTypeSystemForLanguage( in InferiorCallMmap() 95 const ArchSpec arch = process->GetTarget().GetArchitecture(); in InferiorCallMmap() 97 process->GetTarget().GetPlatform()->GetMmapArgumentList( in InferiorCallMmap() 146 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 122 ArchSpec::Core core = process->GetTarget().GetArchitecture().GetCore(); in ReadJITEntry() 155 m_process->GetTarget().RemoveBreakpointByID(m_jit_break_id); in ~JITLoaderGDB() 169 Target &target = m_process->GetTarget(); in DidAttach() 175 Target &target = m_process->GetTarget(); in DidLaunch() 210 m_process->GetTarget().CreateBreakpoint(jit_addr, true, false).get(); in SetJITBreakpoint() 275 if (m_process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) in ReadJITDescriptor() 287 Target &target = m_process->GetTarget(); in ReadJITDescriptorImpl() 420 ArchSpec arch(process->GetTarget().GetArchitecture()); in CreateInstance() 452 Target &target = m_process->GetTarget(); in GetSymbolAddress()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.cpp | 209 GetTarget().SetArchitecture(arch, true /*set_platform*/); in DoLoadCore() 217 if (ModuleSP module = GetTarget().GetExecutableModule()) in DoLoadCore() 218 GetTarget().MergeArchitecture(module->GetArchitecture()); in DoLoadCore() 223 GetTarget().GetDebugger().GetID()); in DoLoadCore() 339 ModuleList &modules = GetTarget().GetImages(); in BuildMemoryRegions() 340 SectionLoadList &load_list = GetTarget().GetSectionLoadList(); in BuildMemoryRegions() 449 GetTarget().GetImages().Remove(module_sp); in GetOrCreateModule() 529 GetTarget().GetImages().Append(module_sp, true /* notify */); in ReadModuleList() 533 module_sp->SetLoadAddress(GetTarget(), load_addr, false, in ReadModuleList() 542 lldb::ModuleSP module_sp = GetTarget().GetExecutableModule(); in GetProcessInfo() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/ |
| H A D | ReportRetriever.cpp | 97 process_sp->GetTarget().GetDebugger().GetID()); in RetrieveReportData() 214 process_sp->GetTarget().GetDebugger().GetOutputStreamSP())) in NotifyBreakpointHit() 237 Target &target = process_sp->GetTarget(); in SetupBreakpoint() 247 process_sp->GetTarget() in SetupBreakpoint()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 77 Target &target = m_process->GetTarget(); in GetTargetExecutable() 119 module->SetLoadAddress(m_process->GetTarget(), base_addr, base_addr_is_offset, in UpdateLoadedSectionsCommon() 128 Target &target = m_process->GetTarget(); in UnloadSectionsCommon() 153 Target &target = m_process->GetTarget(); in FindModuleViaTarget() 194 PlatformSP platform_sp = process->GetTarget().GetPlatform(); in LoadBinaryWithUUIDAndAddress() 195 Target &target = process->GetTarget(); in LoadBinaryWithUUIDAndAddress()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 105 m_process->GetTarget().GetImages().FindTypes(nullptr, query, results); in GetTypeInfo() 258 if (!process->GetTarget().ResolveLoadAddress(vtable_load_addr, vtable_addr)) in GetVTableInfo() 340 Target &target = m_process->GetTarget(); in GetDynamicTypeAndAddress() 360 if (!m_process->GetTarget().ResolveLoadAddress( in GetDynamicTypeAndAddress() 545 Target &target = m_process->GetTarget(); in CreateExceptionSearchFilter() 561 Target &target = m_process->GetTarget(); in CreateExceptionBreakpoint() 626 ScratchTypeSystemClang::GetForTarget(m_process->GetTarget()); in GetExceptionObjectForThread() 644 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetExceptionObjectForThread() 658 m_process->GetTarget().GetFunctionCallerForLanguage( in GetExceptionObjectForThread()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 57 ReadObjCLibraryIfNeeded(process->GetTarget().GetImages()); in AppleObjCRuntime() 226 const ModuleList &modules = process->GetTarget().GetImages(); in GetObjCModule() 240 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetPrintForDebuggerAddr() 324 const ModuleList &modules = m_process->GetTarget().GetImages(); in GetFoundationVersion() 377 Target &target = process->GetTarget(); in GetObjCVersion() 418 m_process->GetTarget(), GetLanguageType(), catch_bp, throw_bp, in SetExceptionBreakpoints() 456 Target &target(m_process->GetTarget()); in CalculateHasNewLiteralsAndIndexing() 474 Target &target = m_process->GetTarget(); in CreateExceptionSearchFilter()
|