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
Debian 8, using llvm 4.0, as well as the trunk, when running the attached code I get a segfault.
It looks like the generated call is of the near, ip-relative type, and when the symbol is resolved, the offset is incorrect, as it can't fit into 32-bit allowed for that type of instruction.
$ clang -g min.c llvm-config --cflags --ldflags --system-libs --libs core orcjit native -rdynamic -lstdc++ -o min
$ gdb min
$ (gdb) run
$ Program received signal SIGSEGV, Segmentation fault.
$ 0x00007ffff7ff0001 in ?? ()
$ (gdb) x/i 0x00007ffff7ff0001
$ => 0x7ffff7ff0001: callq 0x800000edbd50
The text was updated successfully, but these errors were encountered:
Sorry for the late response. Were you able to solve this?
For now, even in LLM 10, JIT'd code on Linux requires use of the large code model to avoid direct PC-relative calls (calls should be indirect through registers instead). If you're seeing a direct branch my first inclination would be to check the code model.
This situation should change soon: We already support the small code model for MachO objects linked with JITLink (LLVM's new JIT linker). Hopefully we will get an ELF version of JITLink soon and we will be able to avoid this issue on Linux too.
Closing as stale. RuntimeDyld still requires specific code and relocation models, and the original issue was likely due to that. The solution is to move to JITLink, which we're in the process of doing.
EugeneZelenko
added
wontfix
Issue is real, but we can't or won't fix it. Not invalid
obsolete
Issues with old (unsupported) versions of LLVM
and removed
obsolete
Issues with old (unsupported) versions of LLVM
labels
Mar 14, 2023
Extended Description
Debian 8, using llvm 4.0, as well as the trunk, when running the attached code I get a segfault.
It looks like the generated call is of the near, ip-relative type, and when the symbol is resolved, the offset is incorrect, as it can't fit into 32-bit allowed for that type of instruction.
$ clang -g min.c
llvm-config --cflags --ldflags --system-libs --libs core orcjit native
-rdynamic -lstdc++ -o min$ gdb min
$ (gdb) run
$ Program received signal SIGSEGV, Segmentation fault.
$ 0x00007ffff7ff0001 in ?? ()
$ (gdb) x/i 0x00007ffff7ff0001
$ => 0x7ffff7ff0001: callq 0x800000edbd50
The text was updated successfully, but these errors were encountered: