Home
last modified time | relevance | path

Searched refs:objc_runtime (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp177 ObjCLanguageRuntime *objc_runtime = in ShouldStop() local
179 assert(objc_runtime != nullptr); in ShouldStop()
188 objc_runtime->AddToMethodCache(m_isa_addr, m_sel_str, target_addr); in ShouldStop()
193 objc_runtime->AddToMethodCache(m_isa_addr, m_sel_addr, target_addr); in ShouldStop()
401 LanguageRuntime *objc_runtime in ShouldStop() local
405 assert(objc_runtime); in ShouldStop()
407 objc_runtime->GetStepThroughTrampolinePlan(GetThread(), false); in ShouldStop()
H A DAppleObjCTrampolineHandler.cpp1012 ObjCLanguageRuntime *objc_runtime = in GetStepThroughDispatchPlan() local
1014 assert(objc_runtime != nullptr); in GetStepThroughDispatchPlan()
1018 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sel_addr); in GetStepThroughDispatchPlan()
1022 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sym_name); in GetStepThroughDispatchPlan()
H A DAppleObjCRuntimeV2.cpp930 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*process); in DoExecute() local
931 if (objc_runtime) { in DoExecute()
932 auto iterators_pair = objc_runtime->GetDescriptorIteratorPair(); in DoExecute()
1033 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*process); in DoExecute() local
1034 if (!objc_runtime) { in DoExecute()
1041 objc_runtime->GetTaggedPointerVendor(); in DoExecute()
/openbsd-src/gnu/llvm/lldb/examples/summaries/cocoa/
H A DClass.py9 import lldb.runtime.objc.objc_runtime
15 runtime = lldb.runtime.objc.objc_runtime.ObjCRuntime.runtime_from_isa(
H A DNSNotification.py10 import lldb.runtime.objc.objc_runtime
82 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
111 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSMachPort.py12 import lldb.runtime.objc.objc_runtime
95 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
124 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSBundle.py12 import lldb.runtime.objc.objc_runtime
99 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
130 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSException.py9 import lldb.runtime.objc.objc_runtime
90 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
119 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFBinaryHeap.py12 import lldb.runtime.objc.objc_runtime
92 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
132 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSURL.py11 import lldb.runtime.objc.objc_runtime
111 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
138 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSData.py12 import lldb.runtime.objc.objc_runtime
103 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
158 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFBag.py12 import lldb.runtime.objc.objc_runtime
95 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
134 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFDictionary.py12 import lldb.runtime.objc.objc_runtime
181 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
216 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
238 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSIndexSet.py12 import lldb.runtime.objc.objc_runtime
128 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
157 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSDate.py12 import lldb.runtime.objc.objc_runtime
219 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
259 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
277 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFBitVector.py12 import lldb.runtime.objc.objc_runtime
147 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
192 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFArray.py12 import lldb.runtime.objc.objc_runtime
172 return lldb.runtime.objc.objc_runtime.InvalidPointer_Description(
176 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
H A DNSSet.py11 import lldb.runtime.objc.objc_runtime
205 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
260 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DNSNumber.py13 import lldb.runtime.objc.objc_runtime
214 class_data, wrapper = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
249 lldb.runtime.objc.objc_runtime.SpecialSituation_Description):
H A DCFString.py11 import lldb.runtime.objc.objc_runtime
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp754 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*m_process); in AlwaysRelyOnEHUnwindInfo() local
755 return objc_runtime != nullptr && in AlwaysRelyOnEHUnwindInfo()
756 objc_runtime->IsModuleObjCLibrary(module_sp); in AlwaysRelyOnEHUnwindInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp1001 if (auto *objc_runtime = ObjCLanguageRuntime::Get(*process)) { in GetTypeScavenger() local
1002 if (auto *decl_vendor = objc_runtime->GetDeclVendor()) { in GetTypeScavenger()
H A DCocoa.cpp1157 if (AppleObjCRuntime *objc_runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>( in ObjCBooleanSummaryProvider() local
1161 objc_runtime->GetValuesForGlobalCFBooleans(cf_true, cf_false); in ObjCBooleanSummaryProvider()
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4750 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*process); in GetBitSize() local
4751 if (objc_runtime) { in GetBitSize()
4753 if (objc_runtime->GetTypeBitSize(GetType(qual_type), bit_size)) in GetBitSize()
6439 ObjCLanguageRuntime *objc_runtime = in GetChildCompilerTypeAtIndex() local
6441 if (objc_runtime != nullptr) { in GetChildCompilerTypeAtIndex()
6443 child_byte_offset = objc_runtime->GetByteOffsetForIvar( in GetChildCompilerTypeAtIndex()