Home
last modified time | relevance | path

Searched refs:ObjCISA (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h43 typedef lldb::addr_t ObjCISA; typedef
110 virtual ObjCISA GetISA() = 0;
114 Describe(std::function<void(ObjCISA)> const &superclass_func, in Describe()
232 virtual ClassDescriptorSP GetClassDescriptorFromISA(ObjCISA isa);
234 ClassDescriptorSP GetNonKVOClassDescriptor(ObjCISA isa);
278 bool IsValidISA(ObjCISA isa) { in IsValidISA()
291 virtual ObjCISA GetISA(ConstString name);
293 virtual ObjCISA GetParentClass(ObjCISA isa);
329 bool ISAIsCached(ObjCISA isa) const { in ISAIsCached()
422 typedef std::map<ObjCISA, ClassDescriptorSP> ISAToDescriptorMap;
[all …]
H A DObjCLanguageRuntime.cpp52 bool ObjCLanguageRuntime::AddClass(ObjCISA isa, in AddClass()
184 ObjCLanguageRuntime::ObjCISA
237 ObjCLanguageRuntime::ObjCISA
238 ObjCLanguageRuntime::GetParentClass(ObjCLanguageRuntime::ObjCISA isa) { in GetParentClass()
271 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
296 ObjCLanguageRuntime::GetClassDescriptorFromISA(ObjCISA isa) { in GetClassDescriptorFromISA()
315 ObjCLanguageRuntime::GetNonKVOClassDescriptor(ObjCISA isa) { in GetNonKVOClassDescriptor()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h70 ClassDescriptorSP GetClassDescriptorFromISA(ObjCISA isa) override;
102 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA = 1;
103 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA_NSAtom = 2;
104 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA_NSNumber = 3;
105 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA_NSDateTS = 4;
106 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA_NSManagedObject =
108 static const ObjCLanguageRuntime::ObjCISA g_objc_Tagged_ISA_NSDate = 6;
137 ObjCLanguageRuntime::ClassDescriptorSP GetClassDescriptor(ObjCISA isa);
151 bool EvaluateNonPointerISA(ObjCISA isa, ObjCISA &ret_isa);
154 std::map<ObjCISA, ObjCLanguageRuntime::ClassDescriptorSP> m_cache;
[all …]
H A DAppleObjCRuntimeV1.h48 ClassDescriptorV1(ObjCISA isa, lldb::ProcessSP process_sp);
75 ObjCISA GetISA() override { return m_isa; } in GetISA()
78 Describe(std::function<void(ObjCLanguageRuntime::ObjCISA)> const
88 void Initialize(ObjCISA isa, lldb::ProcessSP process_sp);
92 ObjCISA m_isa;
93 ObjCISA m_parent_isa;
H A DAppleObjCClassDescriptorV2.h52 ObjCLanguageRuntime::ObjCISA GetISA() override { return m_objc_class_ptr; } in GetISA()
55 std::function<void(ObjCLanguageRuntime::ObjCISA)> const &superclass_func,
80 ObjCLanguageRuntime::ObjCISA m_isa = 0; // The class's metaclass.
81 ObjCLanguageRuntime::ObjCISA m_superclass = 0;
133 ObjCLanguageRuntime::ObjCISA m_firstSubclass;
134 ObjCLanguageRuntime::ObjCISA m_nextSiblingClass;
224 ObjCLanguageRuntime::ObjCISA isa, const char *name) in ClassDescriptorV2()
333 ObjCLanguageRuntime::ObjCISA GetISA() override { in GetISA()
H A DAppleObjCDeclVendor.h36 clang::ObjCInterfaceDecl *GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa);
44 typedef llvm::DenseMap<ObjCLanguageRuntime::ObjCISA,
H A DAppleObjCRuntimeV1.cpp176 ObjCISA isa, lldb::ProcessSP process_sp) { in ClassDescriptorV1()
181 ObjCISA isa, lldb::ProcessSP process_sp) { in Initialize()
268 std::function<void(ObjCLanguageRuntime::ObjCISA)> const &superclass_func, in Describe()
373 ObjCISA isa; in UpdateISAToDescriptorMapIfNeeded()
H A DAppleObjCRuntimeV2.cpp1416 (ObjCLanguageRuntime::ObjCISA)value); in operator *()
1502 AppleObjCRuntimeV2::GetClassDescriptorFromISA(ObjCISA isa) { in GetClassDescriptorFromISA()
2066 ObjCISA isa = data.GetAddress(&offset); in ParseClassInfoArray()
2589 std::function<void(ObjCISA)>(nullptr), in LookupRuntimeSymbol()
2903 m_runtime.GetClassDescriptorFromISA((ObjCISA)slot_data); in GetClassDescriptor()
2906 ObjCISA fixed_isa = abi_sp->FixCodeAddress((ObjCISA)slot_data); in GetClassDescriptor()
3038 ObjCISA real_isa = 0; in GetClassDescriptor()
3052 ObjCISA isa, ObjCISA &ret_isa) { in EvaluateNonPointerISA()
3162 lldb_private::AppleObjCRuntime::ObjCISA
3163 AppleObjCRuntimeV2::GetPointerISA(ObjCISA isa) { in GetPointerISA()
[all …]
H A DAppleObjCDeclVendor.cpp145 AppleObjCDeclVendor::GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa) { in GetDeclForISA()
402 ObjCLanguageRuntime::ObjCISA objc_isa = 0; in FinishDecl()
424 this](ObjCLanguageRuntime::ObjCISA isa) { in FinishDecl()
586 ObjCLanguageRuntime::ObjCISA isa = m_runtime.GetISA(name); in FindDecls()
H A DAppleObjCClassDescriptorV2.cpp374 std::function<void(ObjCLanguageRuntime::ObjCISA)> const &superclass_func, in Describe()
430 std::function<void(ObjCLanguageRuntime::ObjCISA)>(nullptr), in Describe()