This is an archive of the discontinued LLVM Phabricator instance.

[mlir] Add MLIR-C dylib.
ClosedPublic

Authored by stellaraccident on Nov 11 2021, 9:27 PM.

Details

Summary

Per discussion on discord and various feature requests across bindings (Haskell and Rust bindings authors have asked me directly), we should be building a link-ready MLIR-C dylib which exports the C API and can be used without linking to anything else.

This patch:

  • Adds a new MLIR-C aggregate shared library (libMLIR-C.so), which is similar in name and function to libLLVM-C.so.
  • It is guarded by the new CMake option MLIR_BUILD_MLIR_C_DYLIB, which has a similar purpose/name to the LLVM_BUILD_LLVM_C_DYLIB option.
  • On all platforms, this will work with both static, BUILD_SHARED_LIBS, and libMLIR builds, if supported:
    • In static builds: libMLIR-C.so will export the CAPI symbols and statically link all dependencies into itself.
    • In BUILD_SHARED_LIBS: libMLIR-C.so will export the CAPI symbols and have dynamic dependencies on implementation shared libraries.
    • In libMLIR.so mode: same as static. libMLIR.so was not finished for actual linking use within the project. An eventual relayering so that libMLIR-C.so depends on libMLIR.so is possible but requires first re-engineering the latter to use the aggregate facility.
  • On Linux, exported symbols are filtered to only the CAPI. On others (MacOS, Windows), all symbols are exported. A CMake status is printed unless if global visibility is hidden indicating that this has not yet been implemented. The library should still work, but it will be larger and more likely to conflict until fixed. Someone should look at lifting the corresponding support from libLLVM-C.so and adapting. Or, for special uses, just build with -DCMAKE_CXX_VISIBILITY_PRESET=hidden -DCMAKE_C_VISIBILITY_PRESET=hidden.
  • Includes fixes to execution engine symbol export macros to enable default visibility. Without this, the advice to use hidden visibility would have resulted in test failures and unusable execution engine support libraries.

Diff Detail

Event Timeline

stellaraccident requested review of this revision.Nov 11 2021, 9:27 PM
mehdi_amini accepted this revision.Nov 11 2021, 9:33 PM
This revision is now accepted and ready to land.Nov 11 2021, 9:33 PM
jpienaar accepted this revision.Nov 11 2021, 9:43 PM

Thanks!

mlir/lib/CAPI/CMakeLists.txt
31

OOC would this message be shown even if they had set this cmake option? (it appears so but not sure)

Update when warning status prints.

mlir/lib/CAPI/CMakeLists.txt
31

Ah, I meant to guard that better but forgot. Attempted to make it better scoped. It is really an advertisement for people not me to do some work on their platform :)

This revision was automatically updated to reflect the committed changes.