You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
llvm.stackmap requires to provide custom memory MCJIT memory manager to allow interception of .llvm_stackmaps section
Currently, it is not possible due to 3 problems
There are no bindings for the default memory manager for delegation to
Default memory manager implementation aka SectionMemoryManager has no C-exports
Which allows providing more options than just opt level when creating an execution engine
One of those options is MCJMM which is a wrapper for user-created custom memory-manager
The text was updated successfully, but these errors were encountered:
semoro
added a commit
to ss220-space/inkwell
that referenced
this issue
Jan 25, 2022
I also need this feature, I'm using a global variable linking to the stackmap section in static compile mode, which however causing segmentation fault in jited code.
llvm.stackmap
requires to provide custom memory MCJIT memory manager to allow interception of.llvm_stackmaps
sectionCurrently, it is not possible due to 3 problems
There are no bindings for the default memory manager for delegation to
Default memory manager implementation aka
SectionMemoryManager
has no C-exportsThere is no access to
Which allows providing more options than just opt level when creating an execution engine
One of those options is
MCJMM
which is a wrapper for user-created custom memory-managerThe text was updated successfully, but these errors were encountered: