Home
last modified time | relevance | path

Searched refs:impl_addr (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.cpp67 lldb::addr_t impl_addr) { in AddToMethodCache() argument
73 class_addr, selector, impl_addr); in AddToMethodCache()
76 ClassAndSel(class_addr, selector), impl_addr)); in AddToMethodCache()
81 lldb::addr_t impl_addr) { in AddToMethodCache() argument
85 class_addr, sel_str, impl_addr); in AddToMethodCache()
88 ClassAndSelStr(class_addr, sel_str), impl_addr)); in AddToMethodCache()
H A DObjCLanguageRuntime.h255 lldb::addr_t impl_addr);
258 lldb::addr_t impl_addr);
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp1009 lldb::addr_t impl_addr = LLDB_INVALID_ADDRESS; in GetStepThroughDispatchPlan() local
1018 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sel_addr); in GetStepThroughDispatchPlan()
1022 impl_addr = objc_runtime->LookupInMethodCache(isa_addr, sym_name); in GetStepThroughDispatchPlan()
1027 if (impl_addr != LLDB_INVALID_ADDRESS) { in GetStepThroughDispatchPlan()
1031 impl_addr); in GetStepThroughDispatchPlan()
1033 ret_plan_sp = std::make_shared<ThreadPlanRunToAddress>(thread, impl_addr, in GetStepThroughDispatchPlan()