Home
last modified time | relevance | path

Searched refs:GetTarget (Results 1 – 25 of 179) sorted by relevance

12345678

/external/llvm-project/lldb/source/API/
DSBBreakpointLocation.cpp98 loc_sp->GetTarget().GetAPIMutex()); in GetLoadAddress()
111 loc_sp->GetTarget().GetAPIMutex()); in SetEnabled()
122 loc_sp->GetTarget().GetAPIMutex()); in IsEnabled()
134 loc_sp->GetTarget().GetAPIMutex()); in GetHitCount()
146 loc_sp->GetTarget().GetAPIMutex()); in GetIgnoreCount()
158 loc_sp->GetTarget().GetAPIMutex()); in SetIgnoreCount()
170 loc_sp->GetTarget().GetAPIMutex()); in SetCondition()
181 loc_sp->GetTarget().GetAPIMutex()); in GetCondition()
194 loc_sp->GetTarget().GetAPIMutex()); in SetAutoContinue()
205 loc_sp->GetTarget().GetAPIMutex()); in GetAutoContinue()
[all …]
DSBBreakpointName.cpp55 TargetSP GetTarget() const { in GetTarget() function in lldb::SBBreakpointNameImpl
101 TargetSP target_sp = GetTarget(); in GetBreakpointName()
134 Target &target = bkpt_sp->GetTarget(); in SBBreakpointName()
159 rhs.m_impl_up->GetTarget(), rhs.m_impl_up->GetName()); in SBBreakpointName()
175 m_impl_up = std::make_unique<SBBreakpointNameImpl>(rhs.m_impl_up->GetTarget(), in operator =()
222 m_impl_up->GetTarget()->GetAPIMutex()); in SetEnabled()
231 TargetSP target_sp = m_impl_up->GetTarget(); in UpdateName()
246 m_impl_up->GetTarget()->GetAPIMutex()); in IsEnabled()
259 m_impl_up->GetTarget()->GetAPIMutex()); in SetOneShot()
273 m_impl_up->GetTarget()->GetAPIMutex()); in IsOneShot()
[all …]
DSBBreakpoint.cpp84 SBTarget SBBreakpoint::GetTarget() const { in GetTarget() function in SBBreakpoint
85 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBBreakpoint, GetTarget); in GetTarget()
115 else if (bkpt_sp->GetTarget().GetBreakpointByID(bkpt_sp->GetID())) in operator bool()
127 bkpt_sp->GetTarget().GetAPIMutex()); in ClearAllBreakpointSites()
142 bkpt_sp->GetTarget().GetAPIMutex()); in FindLocationByAddress()
144 Target &target = bkpt_sp->GetTarget(); in FindLocationByAddress()
163 bkpt_sp->GetTarget().GetAPIMutex()); in FindLocationIDByAddress()
165 Target &target = bkpt_sp->GetTarget(); in FindLocationIDByAddress()
184 bkpt_sp->GetTarget().GetAPIMutex()); in FindLocationByID()
200 bkpt_sp->GetTarget().GetAPIMutex()); in GetLocationAtIndex()
[all …]
DSBProcess.cpp144 process_sp->GetTarget().GetAPIMutex()); in RemoteLaunch()
151 Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); in RemoteLaunch()
177 process_sp->GetTarget().GetAPIMutex()); in RemoteAttachToProcessWithID()
203 process_sp->GetTarget().GetAPIMutex()); in GetNumThreads()
219 process_sp->GetTarget().GetAPIMutex()); in GetSelectedThread()
237 process_sp->GetTarget().GetAPIMutex()); in CreateOSPluginThread()
245 SBTarget SBProcess::GetTarget() const { in GetTarget() function in SBProcess
246 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBProcess, GetTarget); in GetTarget()
252 target_sp = process_sp->GetTarget().shared_from_this(); in GetTarget()
390 process_sp->GetTarget().GetAPIMutex()); in SetSelectedThread()
[all …]
DSBWatchpoint.cpp106 watchpoint_sp->GetTarget().GetAPIMutex()); in GetHardwareIndex()
121 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchAddress()
136 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchSize()
148 Target &target = watchpoint_sp->GetTarget(); in SetEnabled()
169 watchpoint_sp->GetTarget().GetAPIMutex()); in IsEnabled()
182 watchpoint_sp->GetTarget().GetAPIMutex()); in GetHitCount()
195 watchpoint_sp->GetTarget().GetAPIMutex()); in GetIgnoreCount()
207 watchpoint_sp->GetTarget().GetAPIMutex()); in SetIgnoreCount()
218 watchpoint_sp->GetTarget().GetAPIMutex()); in GetCondition()
231 watchpoint_sp->GetTarget().GetAPIMutex()); in SetCondition()
[all …]
/external/llvm-project/lldb/source/Target/
DThreadPlanStepRange.cpp42 m_use_fast_step = GetTarget().GetUseFastStepping(); in ThreadPlanStepRange()
91 m_address_ranges[0].Dump(s, &GetTarget(), Address::DumpStyleLoadAddress); in DumpRanges()
95 m_address_ranges[i].Dump(s, &GetTarget(), Address::DumpStyleLoadAddress); in DumpRanges()
109 m_address_ranges[i].ContainsLoadAddress(pc_load_addr, &GetTarget()); in InRange()
133 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange()
152 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange()
162 &GetTarget()) != pc_load_addr) { in InRange()
175 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange()
199 cur_pc, &GetTarget()); in InSymbol()
203 return range.ContainsLoadAddress(cur_pc, &GetTarget()); in InSymbol()
[all …]
DProcessTrace.cpp111 return GetTarget().GetArchitecture(); in GetArchitecture()
118 ModuleSP module_sp = GetTarget().GetExecutableModule(); in GetProcessInfo()
121 info.SetExecutableFile(GetTarget().GetExecutableModule()->GetFileSpec(), in GetProcessInfo()
130 GetTarget().GetSectionLoadList().ResolveLoadAddress(addr, resolved_address); in DoReadMemory()
132 return GetTarget().ReadMemoryFromFileCache(resolved_address, buf, size, in DoReadMemory()
DThreadPlanStepOut.cpp120 m_return_addr = return_address.GetLoadAddress(&m_process.GetTarget()); in ThreadPlanStepOut()
141 GetTarget().CreateBreakpoint(m_return_addr, true, false).get(); in ThreadPlanStepOut()
191 GetTarget().RemoveBreakpointByID(m_return_bp_id); in ~ThreadPlanStepOut()
206 if (tmp_address.SetLoadAddress(m_step_from_insn, &GetTarget())) { in GetDescription()
218 if (tmp_address.SetLoadAddress(m_return_addr, &GetTarget())) { in GetDescription()
400 Breakpoint *return_bp = GetTarget().GetBreakpointByID(m_return_bp_id).get(); in DoWillResume()
409 Breakpoint *return_bp = GetTarget().GetBreakpointByID(m_return_bp_id).get(); in WillStop()
430 GetTarget().RemoveBreakpointByID(m_return_bp_id); in MischiefManaged()
466 inlined_sc.target_sp = GetTarget().shared_from_this(); in QueueInlinedStepPlan()
DThreadPlanRunToAddress.cpp51 Target &target = thread.GetProcess()->GetTarget(); in ThreadPlanRunToAddress()
66 GetTarget().CreateBreakpoint(m_addresses[i], true, false).get(); in SetInitialBreakpoints()
80 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in ~ThreadPlanRunToAddress()
121 GetTarget().GetBreakpointByID(m_break_ids[i]).get(); in GetDescription()
180 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in MischiefManaged()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
DDynamicLoaderWindowsDYLD.cpp55 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
73 module_sp = m_process->GetTarget().GetOrCreateModule(module_spec, in OnLoadModule()
83 m_process->GetTarget().ModulesDidLoad(module_list); in OnLoadModule()
88 if (!m_process->GetTarget().ResolveLoadAddress(module_addr, resolved_addr)) in OnUnloadModule()
97 m_process->GetTarget().ModulesDidUnload(module_list, false); in OnUnloadModule()
149 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach()
169 m_process->GetTarget().ModulesDidLoad(module_list); in DidLaunch()
186 auto arch = m_process->GetTarget().GetArchitecture(); in GetStepThroughTrampolinePlan()
196 arch, nullptr, nullptr, m_process->GetTarget(), range, true); in GetStepThroughTrampolinePlan()
215 ExecutionContext exe_ctx(m_process->GetTarget()); in GetStepThroughTrampolinePlan()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp39 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance()
49 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
84 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in ~DynamicLoaderMacOS()
136 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in DoClear()
148 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in ClearNotificationBreakpoint()
227 ScratchTypeSystemClang::GetForTarget(process->GetTarget()); in NotifyBreakpointHit()
250 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 4) { in NotifyBreakpointHit()
301 process->GetTarget().GetDebugger().GetAsyncErrorStream()->Printf( in NotifyBreakpointHit()
304 process->GetTarget().GetArchitecture().GetTriple().getTriple().c_str()); in NotifyBreakpointHit()
356 symbol->GetAddressRef().GetOpcodeLoadAddress(&m_process->GetTarget()); in SetNotificationBreakpoint()
[all …]
DDynamicLoaderMacOSXDYLD.cpp60 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE()
70 process->GetTarget().GetArchitecture().GetTriple(); in LLDB_PLUGIN_DEFINE()
107 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in ~DynamicLoaderMacOSXDYLD()
162 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in DoClear()
176 m_process->GetTarget().RemoveBreakpointByID(m_break_id); in ClearNotificationBreakpoint()
191 m_process->GetTarget().GetArchitecture().GetByteOrder(); in DoInitialImageFetch()
230 Module *executable = m_process->GetTarget().GetExecutableModulePointer(); in DoInitialImageFetch()
265 Target &target = m_process->GetTarget(); in ReadDYLDInfoFromMemoryAndSetNotificationCallback()
346 ScratchTypeSystemClang::GetForTarget(process->GetTarget()); in NotifyBreakpointHit()
398 process->GetTarget().GetDebugger().GetAsyncErrorStream()->Printf( in NotifyBreakpointHit()
[all …]
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp62 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
83 m_process->GetTarget().RemoveBreakpointByID(m_dyld_bid); in ~DynamicLoaderPOSIXDYLD()
126 Target &target = m_process->GetTarget(); in DidAttach()
153 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach()
205 m_process->GetTarget().ModulesDidLoad(module_list); in DidLaunch()
247 m_process->GetTarget().CreateBreakpoint(entry, true, false).get(); in ProbeEntry()
285 dyld_instance->m_process->GetTarget().GetBreakpointByID(break_id); in EntryBreakpointHit()
322 Target &target = m_process->GetTarget(); in SetRendezvousBreakpoint()
419 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules()
433 m_process->GetTarget().ModulesDidLoad(new_modules); in RefreshModules()
[all …]
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DDynamicLoaderHexagonDYLD.cpp52 ModuleSP module = proc->GetTarget().GetExecutableModule(); in LLDB_PLUGIN_DEFINE()
68 return addr.GetLoadAddress(&proc->GetTarget()); in LLDB_PLUGIN_DEFINE()
102 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
119 m_process->GetTarget().RemoveBreakpointByID(m_dyld_bid); in ~DynamicLoaderHexagonDYLD()
158 m_process->GetTarget().ModulesDidLoad(module_list); in DidAttach()
174 Target &target = m_process->GetTarget(); in GetTargetExecutable()
221 Target &target = m_process->GetTarget(); in UpdateLoadedSections()
252 Target &target = m_process->GetTarget(); in UnloadSections()
278 Target &target = m_process->GetTarget(); in SetRendezvousBreakpoint()
359 ModuleList &loaded_modules = m_process->GetTarget().GetImages(); in RefreshModules()
[all …]
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
DDynamicLoaderStatic.cpp30 process->GetTarget().GetArchitecture().GetTriple(); in LLDB_PLUGIN_DEFINE()
48 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE()
79 const ModuleList &module_list = m_process->GetTarget().GetImages(); in LoadAllImagesAtFileAddresses()
112 if (m_process->GetTarget().SetSectionLoadAddress( in LoadAllImagesAtFileAddresses()
125 m_process->GetTarget().ModulesDidLoad(loaded_module_list); in LoadAllImagesAtFileAddresses()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp145 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in CreateInstance()
158 process->GetTarget().GetArchitecture().GetTriple(); in CreateInstance()
215 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in SearchForKernelAtSameLoadAddr()
305 int ptrsize = process->GetTarget().GetArchitecture().GetAddressByteSize(); in SearchForKernelNearPC()
358 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) { in SearchForKernelViaExhaustiveSearch()
370 if (process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) in SearchForKernelViaExhaustiveSearch()
485 if (!process->GetTarget().GetArchitecture().IsCompatibleMatch( in CheckForKernelImageAtAddress()
487 process->GetTarget().SetArchitecture(kernel_arch); in CheckForKernelImageAtAddress()
521 process->GetTarget().SetPlatform(platform_sp); in DynamicLoaderDarwinKernel()
572 if (m_module_sp->SetLoadAddress(process->GetTarget(), 0, true, changed)) in LoadImageAtFileAddress()
[all …]
/external/llvm-project/lldb/test/API/commands/frame/recognizer/
Drecognizer.py10 … val1 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("a", "%d" % arg1)
11 … val2 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("b", "%d" % arg2)
15 …val1 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("a", "(int *)%d" % arg…
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointLocation.cpp52 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress()
68 Target &BreakpointLocation::GetTarget() { return m_owner.GetTarget(); } in GetTarget() function in BreakpointLocation
255 m_user_expression_sp.reset(GetTarget().GetUserExpressionForLanguage( in ConditionSaysStop()
444 Process *process = m_owner.GetTarget().GetProcessSP().get(); in ResolveBreakpointSite()
455 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget())); in ResolveBreakpointSite()
469 ProcessSP process_sp(m_owner.GetTarget().GetProcessSP()); in ClearBreakpointSite()
515 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription()
566 Target *target = &m_owner.GetTarget(); in GetDescription()
637 (uint64_t)m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()), in Dump()
649 m_owner.GetTarget().EventTypeHasListeners( in SendBreakpointLocationChangedEvent()
[all …]
DWatchpointList.cpp26 if (wp_sp->GetTarget().EventTypeHasListeners( in Add()
28 wp_sp->GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged, in Add()
174 if (wp_sp->GetTarget().EventTypeHasListeners( in Remove()
176 wp_sp->GetTarget().BroadcastEvent( in Remove()
236 if ((*pos)->GetTarget().EventTypeHasListeners( in RemoveAll()
238 (*pos)->GetTarget().BroadcastEvent( in RemoveAll()
/external/llvm-project/lldb/test/API/commands/expression/formatters/
Dfoosynth.py28 self.valobj.GetTarget().GetProcess().GetAddressByteSize() == 8)
29 self.is_little = (self.valobj.GetTarget().GetProcess(
31 self.pointer_size = self.valobj.GetTarget().GetProcess().GetAddressByteSize()
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DInferiorCallPOSIX.cpp47 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap()
83 process->GetTarget().GetScratchTypeSystemForLanguage( in InferiorCallMmap()
92 const ArchSpec arch = process->GetTarget().GetArchitecture(); in InferiorCallMmap()
94 process->GetTarget().GetPlatform()->GetMmapArgumentList( in InferiorCallMmap()
141 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
/external/llvm-project/lldb/source/Plugins/JITLoader/GDB/
DJITLoaderGDB.cpp120 ArchSpec::Core core = process->GetTarget().GetArchitecture().GetCore(); in ReadJITEntry()
155 m_process->GetTarget().RemoveBreakpointByID(m_jit_break_id); in ~JITLoaderGDB()
170 Target &target = m_process->GetTarget(); in DidAttach()
176 Target &target = m_process->GetTarget(); in DidLaunch()
211 m_process->GetTarget().CreateBreakpoint(jit_addr, true, false).get(); in SetJITBreakpoint()
276 if (m_process->GetTarget().GetArchitecture().GetAddressByteSize() == 8) in ReadJITDescriptor()
288 Target &target = m_process->GetTarget(); in ReadJITDescriptorImpl()
423 ArchSpec arch(process->GetTarget().GetArchitecture()); in CreateInstance()
461 Target &target = m_process->GetTarget(); in GetSymbolAddress()
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/
DSystemRuntimeMacOSX.cpp46 Module *exe_module = process->GetTarget().GetExecutableModulePointer(); in LLDB_PLUGIN_DEFINE()
56 process->GetTarget().GetArchitecture().GetTriple(); in LLDB_PLUGIN_DEFINE()
276 ModuleSP module_sp(m_process->GetTarget().GetImages().FindFirstModule( in ReadLibdispatchOffsetsAddress()
286 module_sp = m_process->GetTarget().GetImages().FindFirstModule( in ReadLibdispatchOffsetsAddress()
294 dispatch_queue_offsets_symbol->GetLoadAddress(&m_process->GetTarget()); in ReadLibdispatchOffsetsAddress()
330 ModuleSP module_sp(m_process->GetTarget().GetImages().FindFirstModule( in ReadLibpthreadOffsetsAddress()
339 &m_process->GetTarget()); in ReadLibpthreadOffsetsAddress()
378 ModuleSP module_sp(m_process->GetTarget().GetImages().FindFirstModule( in ReadLibdispatchTSDIndexesAddress()
386 &m_process->GetTarget()); in ReadLibdispatchTSDIndexesAddress()
405 … if (m_process->GetTarget().ResolveLoadAddress (m_dispatch_tsd_indexes_addr, dti_struct_addr)) in ReadLibdispatchTSDIndexes()
[all …]
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
DInstrumentationRuntimeASan.cpp143 process_sp->GetTarget().GetDebugger().GetAsyncOutputStream()->Printf( in RetrieveReportData()
269 process_sp->GetTarget().GetDebugger().GetOutputStreamSP()); in NotifyBreakpointHit()
298 Target &target = process_sp->GetTarget(); in Activate()
307 process_sp->GetTarget() in Activate()
322 process_sp->GetTarget().RemoveBreakpointByID(GetBreakpointID()); in Deactivate()
/external/llvm-project/clang/utils/
Dclangdiag.py107 target = frame.GetThread().GetProcess().GetTarget()
123 target = exe_ctx.GetTarget()
154 target = exe_ctx.GetTarget()
178 diagtool = getDiagtool(exe_ctx.GetTarget(), args.path)

12345678