[Lldb-commits] [PATCH] D62795: [Target] Move ObjCLanguageRuntime::LookupRuntimeSymbol into LanguageRuntime
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 3 14:52:03 PDT 2019
clayborg accepted this revision.
clayborg added inline comments.
This revision is now accepted and ready to land.
================
Comment at: include/lldb/Target/ObjCLanguageRuntime.h:270-272
- virtual lldb::addr_t LookupRuntimeSymbol(ConstString name) {
- return LLDB_INVALID_ADDRESS;
- }
----------------
xiaobai wrote:
> clayborg wrote:
> > Which language has this filled in? Only Swift?
> Objective-C is the only thing that has this filled in at the moment, as I understand it.
There must be a V1 or V2 implementation somewhere? From the looks of things here, it seems like we are pulling it out, but that must not be what is happening. So the V1 and V2 impls must have this already set as "lldb::addr_t LookupRuntimeSymbol(ConstString name) override;"?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62795/new/
https://reviews.llvm.org/D62795
More information about the lldb-commits
mailing list