https://bugs.llvm.org/show_bug.cgi?id=27188

Lang Hames <lha...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #5 from Lang Hames <lha...@gmail.com> ---
Hi Stefan,

Yep -- This is fixed as of ORCv2.

> Before closing this ticket, one interesting piece of information would be how 
> Orc v2 handles this. With m = #modules and n = #symbols (each), is the 
> asymptotic complexity of symbol lookup still O(m*n)?

No. JITDylibs (new in ORCv2) contain hash maps of symbol names to
addresses/compiler-closures. Lookup for a single symbol is now O(d), where d =
#JITDylibs.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to