Home
last modified time | relevance | path

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

/llvm-project/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.cpp1011 ObjCLanguageRuntime *objc_runtime = in GetStepThroughDispatchPlan() local
1013 assert(objc_runtime != nullptr); in GetStepThroughDispatchPlan()
1017 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sel_addr); in GetStepThroughDispatchPlan()
1021 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sym_name); in GetStepThroughDispatchPlan()
H A DAppleObjCRuntimeV2.cpp932 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*process); in DoExecute() local
933 if (objc_runtime) { in DoExecute()
934 auto iterators_pair = objc_runtime->GetDescriptorIteratorPair(); in DoExecute()
1022 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*process); in DoExecute() local
1023 if (!objc_runtime) { in DoExecute()
1030 objc_runtime->GetTaggedPointerVendor(); in DoExecute()
/llvm-project/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(valobj)
H A DNSNotification.py10 import lldb.runtime.objc.objc_runtime
86 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
111 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSMachPort.py12 import lldb.runtime.objc.objc_runtime
100 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
125 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSBundle.py12 import lldb.runtime.objc.objc_runtime
104 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
132 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSException.py9 import lldb.runtime.objc.objc_runtime
103 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
128 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DCFBinaryHeap.py12 import lldb.runtime.objc.objc_runtime
97 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
132 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSData.py12 import lldb.runtime.objc.objc_runtime
109 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
164 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DCFBag.py12 import lldb.runtime.objc.objc_runtime
100 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
135 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSURL.py11 import lldb.runtime.objc.objc_runtime
117 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
142 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DCFDictionary.py12 import lldb.runtime.objc.objc_runtime
190 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
222 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
245 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSIndexSet.py12 import lldb.runtime.objc.objc_runtime
136 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
161 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSDate.py12 import lldb.runtime.objc.objc_runtime
227 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
271 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
289 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DCFBitVector.py12 import lldb.runtime.objc.objc_runtime
152 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
193 provider, 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(True)
178 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
H A DNSSet.py11 import lldb.runtime.objc.objc_runtime
213 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
265 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DNSNumber.py13 import lldb.runtime.objc.objc_runtime
238 ) = lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(
273 provider, lldb.runtime.objc.objc_runtime.SpecialSituation_Description
H A DCFString.py11 import lldb.runtime.objc.objc_runtime
/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp804 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*m_process); in PutToLog()
805 return objc_runtime != nullptr && in PutToLog()
806 objc_runtime->IsModuleObjCLibrary(module_sp); in PutToLog()
742 ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*m_process); AlwaysRelyOnEHUnwindInfo() local
/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp933 if (auto *objc_runtime = ObjCLanguageRuntime::Get(*process)) { in GetTypeScavenger() local
934 if (auto *decl_vendor = objc_runtime->GetDeclVendor()) { in GetTypeScavenger()
H A DCocoa.cpp1169 if (AppleObjCRuntime *objc_runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>( in ObjCBooleanSummaryProvider()
1173 objc_runtime->GetValuesForGlobalCFBooleans(cf_true, cf_false); in ObjCBooleanSummaryProvider()
1170 if (AppleObjCRuntime *objc_runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>( ObjCBooleanSummaryProvider() local
/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4756 if (ObjCLanguageRuntime *objc_runtime = in GetBitSize()
4759 objc_runtime->GetTypeBitSize(GetType(qual_type))) in GetBitSize()
6423 ObjCLanguageRuntime *objc_runtime = in GetChildCompilerTypeAtIndex()
6425 if (objc_runtime != nullptr) { in GetChildCompilerTypeAtIndex()
6427 child_byte_offset = objc_runtime->GetByteOffsetForIvar( in GetChildCompilerTypeAtIndex()
4747 if (ObjCLanguageRuntime *objc_runtime = GetBitSize() local
6439 ObjCLanguageRuntime *objc_runtime = GetChildCompilerTypeAtIndex() local