Displaying 1 result from an estimated 1 matches for "libpass".
Did you mean:
libass
2004 Oct 28
1
[LLVMdev] Automatic Loadable Linker Optimization Modules
...run. Furthermore, front-ends may have
specific passes they need to be run at link time (e.g. C++ template generation,
or optimizing exception handling which wouldn't be applicable to modules
compiled from C or Scheme or Stacker).
Goal:
Have llvm-ld automatically load (similar to opt --load=libPasses.so ) link-time
optimization passes based on the bytecode it is linking.
Issues:
1. Should the loadable module be a native .so or a bytecode library?
2. How does the linker automatically know which loadable modules to load? What
in the bytecode lets it know the modules to load and run?
3. Ho...