Skip to content
  1. Sep 23, 2016
  2. Sep 22, 2016
  3. Sep 21, 2016
    • Rafael Espindola's avatar
      Implement ONLY_IF_RO/ONLY_IF_RW like bfd. · e746e52c
      Rafael Espindola authored
      The actual logic is to keep the output section if the output section
      would have been ro/rw.
      
      This is both simpler and more practical, as the intention is linker
      scripts is to always keep of of a pair of ONLY_IF_RO/ONLY_IF_RW.
      
      llvm-svn: 282099
      e746e52c
    • George Rimar's avatar
      [ELF] - Linkerscript: support complex section pattern grammar. · 07171f21
      George Rimar authored
      This is PR30442.
      Previously we were failed to parce complex expressions like:
      foo : { *(SORT_BY_NAME(bar) zed) }
      
      Main idea of patch that globs and excludes can be wrapped in a SORT.
      There is a difference in semanics of ld/gold:
      ld likes:
      *(SORT(EXCLUDE_FILE (*file1.o) .foo.1))
      
      gold likes:
      *(EXCLUDE_FILE (*file1.o) SORT(.foo.1))
      
      Patch implements ld grammar, complex expressions like 
      next is not a problem anymore:
      .abc : { *(SORT(.foo.* EXCLUDE_FILE (*file1.o) .bar.*) .bar.*) }
      
      
      Differential revision: https://reviews.llvm.org/D24758
      
      llvm-svn: 282078
      07171f21
    • Eugene Leviant's avatar
      Linker script: Fix bug with several .bss · 2506cb4d
      Eugene Leviant authored
      When final image has several .bss sections, lld fails
      because second .bss always has zero VA. This causes 
      link error "Not enough space for ELF and program headers"
      
      llvm-svn: 282067
      2506cb4d
    • George Rimar's avatar
      [ELF] - Linkerscript: reimplement readSectionExcludes() · 601e9898
      George Rimar authored
      It is not only a bit more straightforward now, but also next 2 issues are solved:
      
      * It just crashed on ".foo : { *(EXCLUDE_FILE (*file1.o)) }" before.
      * It accepted multiple EXCLUDE_FILEs in a row.
      
      Differential revision: https://reviews.llvm.org/D24726
      
      llvm-svn: 282060
      601e9898
    • Rui Ueyama's avatar
      Accept sh_entsize = 0. · c75ef85e
      Rui Ueyama authored
      This surfaced again with Rust. As per bug 30435, rustc creates a
      mergeable section with a sh_entsize zero. It bit us before, too.
      I think we should relax the input check rather than being too picky.
      
      Differential Revision: https://reviews.llvm.org/D24789
      
      llvm-svn: 282049
      c75ef85e
    • Rafael Espindola's avatar
      Revert "Revert "Only restrict order if both sections are in the script."" · b6b8f6c3
      Rafael Espindola authored
      This reverts commit r282021, bringing back r282015.
      
      The problem was that the comparison function was not a strict weak
      ordering anymore, which this patch fixes.
      
      Original message:
      
      Only restrict order if both sections are in the script.
      
      This matches gold and bfd behavior and is required to handle some scripts.
      
      The script has to assume where PT_LOADs start in order to align that
      spot. If we don't allow section it doesn't know about to move to the
      middle, we can need more PT_LOADs and those will not be aligned.
      
      llvm-svn: 282035
      b6b8f6c3
  4. Sep 20, 2016
  5. Sep 19, 2016
Loading