Ramkumar Ramachandra via llvm-dev
2016-Jul-29 01:13 UTC
[llvm-dev] PIC preferred too strongly, even at CodeModel::Large?
Hi, We were just debugging a sporadic crash the other day, when we noticed that RIP-relative addressing was being used in a JumpTable, even when code and data were well over 4G apart. This is confusing, because we picked CodeModel::Large, and expected this to be taken care of. Isn't that what gcc would do given a Large CodeModel? The default Relocation Model, Reloc::Default, folds into Reloc::PIC_ in most cases. However, if we explicitly specify Reloc::Static, our program should work on all platforms except Darwin: // If we are on Darwin, disallow static relocation model in X86-64 mode, since // the Mach-O file format doesn't support it. if (RM == Reloc::Static && TT.isOSDarwin() && is64Bit) RM = Reloc::PIC_; (from X86MCTargetDesc.cpp) First, is the Mach-O limitation still there? Second, is it okay to silently fold into Reloc::PIC_ in this case and leave the user with sporadic crashes? Finally, can we bypass this limitation by simply appending "-elf" to our Target Triple, forcing ELF generation on all three platforms? Ram
Eli Friedman via llvm-dev
2016-Jul-29 02:14 UTC
[llvm-dev] PIC preferred too strongly, even at CodeModel::Large?
On Thu, Jul 28, 2016 at 6:13 PM, Ramkumar Ramachandra via llvm-dev < llvm-dev at lists.llvm.org> wrote:> Hi, > > We were just debugging a sporadic crash the other day, when we noticed > that RIP-relative addressing was being used in a JumpTable, even when > code and data were well over 4G apart. This is confusing, because we > picked CodeModel::Large, and expected this to be taken care of. Isn't > that what gcc would do given a Large CodeModel? >This sounds like a bug, but I can't reproduce it. Testcase?> The default Relocation Model, Reloc::Default, folds into Reloc::PIC_ > in most cases. However, if we explicitly specify Reloc::Static, our > program should work on all platforms except Darwin: > > // If we are on Darwin, disallow static relocation model in X86-64 mode, > since > // the Mach-O file format doesn't support it. > if (RM == Reloc::Static && TT.isOSDarwin() && is64Bit) > RM = Reloc::PIC_; > > (from X86MCTargetDesc.cpp) > > First, is the Mach-O limitation still there?Yes, the Mach-O limitation still exists as far as I know. Second, is it okay to> silently fold into Reloc::PIC_ in this case and leave the user with > sporadic crashes?Large code model and PIC should be compatible. Finally, can we bypass this limitation by simply> appending "-elf" to our Target Triple, forcing ELF generation on all > three platforms? >What exactly are you planning to do with an ELF object file on OS X? -Eli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160728/445c0b92/attachment.html>
Ramkumar Ramachandra via llvm-dev
2016-Jul-29 16:57 UTC
[llvm-dev] PIC preferred too strongly, even at CodeModel::Large?
Eli Friedman wrote:> On Thu, Jul 28, 2016 at 6:13 PM, Ramkumar Ramachandra via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> We were just debugging a sporadic crash the other day, when we noticed >> that RIP-relative addressing was being used in a JumpTable, even when >> code and data were well over 4G apart. This is confusing, because we >> picked CodeModel::Large, and expected this to be taken care of. Isn't >> that what gcc would do given a Large CodeModel? > > > This sounds like a bug, but I can't reproduce it. Testcase?I've attached an example with a standard switch instruction, compiled with `llc -code-model=large`. It produces: movslq (%rax,%rdi,4), %rsi addq %rax, %rsi jmpq *%rsi>> Second, is it okay to >> silently fold into Reloc::PIC_ in this case and leave the user with >> sporadic crashes? > > > Large code model and PIC should be compatible.Technically, yes. My understanding is that, instead of a cheap implicit $rip offset, you have to materialize the value in a register and do the `add`. I don't think LLVM is doing it correctly.>> Finally, can we bypass this limitation by simply >> appending "-elf" to our Target Triple, forcing ELF generation on all >> three platforms? > > > What exactly are you planning to do with an ELF object file on OS X?I forgot to mention: we're JIT'ting. In any case, isOSDarwin() isn't influenced by an extra "-elf" to the target triple. Ram -------------- next part -------------- A non-text attachment was scrubbed... Name: jumptable_bug.ll Type: application/octet-stream Size: 633 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160729/a6b3b7d5/attachment.obj> -------------- next part -------------- A non-text attachment was scrubbed... Name: jumptable_bug.s Type: application/octet-stream Size: 1058 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160729/a6b3b7d5/attachment-0001.obj>
Joerg Sonnenberger via llvm-dev
2016-Aug-04 16:36 UTC
[llvm-dev] PIC preferred too strongly, even at CodeModel::Large?
On Thu, Jul 28, 2016 at 09:13:08PM -0400, Ramkumar Ramachandra via llvm-dev wrote:> We were just debugging a sporadic crash the other day, when we noticed > that RIP-relative addressing was being used in a JumpTable, even when > code and data were well over 4G apart. This is confusing, because we > picked CodeModel::Large, and expected this to be taken care of. Isn't > that what gcc would do given a Large CodeModel?Just to avoid any confusion, your code is well within 4GB, but the location of the jump table can be more than 4GB away? I'm asking as one of the open issues for me in the PowerPC target is supporting function-relative jump tables, so that the jump table needs only 32bit entries as long as a single function is not longer than 4GB. Joerg
Ramkumar Ramachandra via llvm-dev
2016-Aug-07 20:40 UTC
[llvm-dev] PIC preferred too strongly, even at CodeModel::Large?
Joerg Sonnenberger wrote:> Just to avoid any confusion, your code is well within 4GB, but the > location of the jump table can be more than 4GB away? I'm asking as one > of the open issues for me in the PowerPC target is supporting > function-relative jump tables, so that the jump table needs only 32bit > entries as long as a single function is not longer than 4GB.Yes, that's right. Ram
Possibly Parallel Threads
- PIC preferred too strongly, even at CodeModel::Large?
- PIC preferred too strongly, even at CodeModel::Large?
- PIC preferred too strongly, even at CodeModel::Large?
- [LLVMdev] Generating PIC object files from the LLVM API
- [LLVMdev] How to prevent LLVM from emitting R_X86_64_32 ELF relocations?