[llvm] [ORC] Add Executor Resolver Utility (PR #143654)

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 4 03:03:44 PDT 2025


================
@@ -35,6 +35,7 @@ class EPCGenericDylibManager {
     ExecutorAddr Instance;
     ExecutorAddr Open;
     ExecutorAddr Lookup;
+    ExecutorAddr Resolve;
----------------
lhames wrote:

Is `Lookup` still used after this patch? I'm not opposed to replacing raw dylib handles with `Resolver` objects (as long as it doesn't change the dylib lifetimes, which I don't think it does), but if we are doing that then we can drop `Lookup` entirely and clean up the lookup wrappers and implementations in the target process library.

https://github.com/llvm/llvm-project/pull/143654


More information about the llvm-commits mailing list