Skip to content
  1. Jan 12, 2017
    • Eric Liu's avatar
      [ELF] avoid 'invalid-noreturn' error. · b45c0d4f
      Eric Liu authored
      Summary: elf::fatal is declared "noreturn".
      
      Reviewers: grimar
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D28607
      
      llvm-svn: 291766
      b45c0d4f
    • George Rimar's avatar
      [ELF] - Do not crash if user section has name equal to one of synthetic sections. · f09519c3
      George Rimar authored
      Previously we just crashed when had user defined
      section .shstrtab, for example. Which name equals to synthetic one,
      but have different type.
      
      Testcase reveals an issue.
      
      Differential revision: https://reviews.llvm.org/D28559
      
      llvm-svn: 291765
      f09519c3
    • George Rimar's avatar
      [ELF] - Reuse Decompressor class. · 0d8af369
      George Rimar authored
      Intention of change is to get rid of code duplication.
      Decompressor was introduced in D28105.
      
      Change allows to get rid of few methods relative to decompression.
      
      Differential revision: https://reviews.llvm.org/D28106
      
      llvm-svn: 291758
      0d8af369
    • George Rimar's avatar
      [ELF] - Make x86 unknown relocations messages to be consistent with x64 ones · 1743e55e
      George Rimar authored
      Addded quotes to be consistent with x64 messages,
      where quotes were used for nicer reporting 'Unknown' relocations initially.
      
      llvm-svn: 291752
      1743e55e
    • George Rimar's avatar
      [ELF] - Explicitly list supported relocations for x64 target. · 66666360
      George Rimar authored
      The same we did for x86 earlier:
      list supported relocations explicitly and error out on unknown.
      
      Differential revision: https://reviews.llvm.org/D28564
      
      llvm-svn: 291751
      66666360
    • Rui Ueyama's avatar
      PDB: Merge type info. · 5289662e
      Rui Ueyama authored
      This patch is to merge type info in multiple .debug$T sections.
      
      One mystery that needs to be solved is that it is not clear how
      the MSVC linker uses TPI and IPI streams. Both streams contain
      type info, and it is not obvious what kind of record should go
      which.
      
      dumppdb command in microsoft-pdb repository prints out IPI stream
      contents as "IDs" and TPI stream as "TYPES", but looks like the tool
      don't really care about which stream type recrods were read from.
      
      For now, in this patch, I emit all type records to TPI stream.
      It might just work with other tools. If not, we need to investigate
      it more.
      
      llvm-svn: 291739
      5289662e
    • Zachary Turner's avatar
      [CodeView] Finish decoupling TypeDatabase from TypeDumper. · 629cb7d8
      Zachary Turner authored
      Previously the type dumper itself was passed around to a lot of different
      places and manipulated in ways that were more appropriate on the type
      database. For example, the entire TypeDumper was passed into the symbol
      dumper, when all the symbol dumper wanted to do was lookup the name of a
      TypeIndex so it could print it. That's what the TypeDatabase is for --
      mapping type indices to names.
      
      Another example is how if the user runs llvm-pdbdump with the option to
      dump symbols but not types, we still have to visit all types so that we
      can print minimal information about the type of a symbol, but just without
      dumping full symbol records. The way we did this before is by hacking it
      up so that we run everything through the type dumper with a null printer,
      so that the output goes to /dev/null. But really, we don't need to dump
      anything, all we want to do is build the type database. Since
      TypeDatabaseVisitor now exists independently of TypeDumper, we can do
      this. We just build a custom visitor callback pipeline that includes a
      database visitor but not a dumper.
      
      All the hackery around printers etc goes away. After this patch, we could
      probably even delete the entire CVTypeDumper class since really all it is
      at this point is a thin wrapper that hides the details of how to build a
      useful visitation pipeline. It's not a priority though, so CVTypeDumper
      remains for now.
      
      After this patch we will be able to easily plug in a different style of
      type dumper by only implementing the proper visitation methods to dump
      one-line output and then sticking it on the pipeline.
      
      Differential Revision: https://reviews.llvm.org/D28524
      
      llvm-svn: 291724
      629cb7d8
  2. Jan 11, 2017
    • Rafael Espindola's avatar
      Make the -b binary .data section rw. · 79114a67
      Rafael Espindola authored
      This matches what bfd and gold do. It also matches the common flags of
      other .data sections.
      
      llvm-svn: 291674
      79114a67
    • George Rimar's avatar
      [ELF] - Ignore R_386_NONE. · 7fa220f5
      George Rimar authored
      We had an error when met this relocation
      after latest changes aboult listing
      x86 relocations explicitly.
      
      Since we support R_X86_64_NONE,
      and GNU ld supports R_386_NONE,
      it seems reasonable to have.
      
      Differential revision: https://reviews.llvm.org/D28552
      
      llvm-svn: 291672
      7fa220f5
    • George Rimar's avatar
      [ELF] - Explicitly list supported relocations for x86 target. · 57b0e6a5
      George Rimar authored
      Previously some value was returned by default for relocations by getRelExpr(),
      even if relocation actually was not supported.
      
      This is orthogonal alternative to D28094.
      Instead of implementing probably useless R_386_PC8/R_386_8 relocations,
      this patch uses them in a testcase to demonstrate what happens
      when LLD mets unsupported relocations.
      
      Patch passes all testcases and changes logic only for x86.
      
      Differential revision: https://reviews.llvm.org/D28516
      
      llvm-svn: 291658
      57b0e6a5
    • Zachary Turner's avatar
      [CodeView/PDB] Rename a bunch of files. · a9054ddd
      Zachary Turner authored
      We were starting to get some name clashes between llvm-pdbdump
      and the common CodeView framework, so I took this opportunity
      to rename a bunch of files to more accurately describe their
      usage.  This also helps in llvm-pdbdump to distinguish
      between different files and whether they are used for pretty
      dump mode or raw dump mode.
      
      llvm-svn: 291627
      a9054ddd
  3. Jan 10, 2017
  4. Jan 09, 2017
    • Peter Collingbourne's avatar
      ELF: Discard .gnu.linkonce.* sections. · c39e5d64
      Peter Collingbourne authored
      The linkonce feature is a sort of proto-comdat. As far as I am aware no
      compiler produces linkonce sections anymore, but some glibc i386 object
      files contain definitions of symbol "__x86.get_pc_thunk.bx" in linkonce
      sections. Drop those sections to avoid duplicate symbol errors.
      
      This is glibc PR20543, we should remove this hack once that has been
      fixed for a while.
      
      Fixes PR31215.
      
      Differential Revision: https://reviews.llvm.org/D28430
      
      llvm-svn: 291474
      c39e5d64
    • Meador Inge's avatar
      [ELF] Allow defined symbols to be assigned from linker script · 8f1f3c40
      Meador Inge authored
      This patch allows for linker scripts to assign a new value
      to a symbol that is already defined (either in an object file
      or the linker script itself).
      
      llvm-svn: 291459
      8f1f3c40
    • Pavel Labath's avatar
      [lld][cmake] Fix LLVM_LINK_LLVM_DYLIB build · c9fa114b
      Pavel Labath authored
      Summary:
      Lld's build had a couple of issues which prevented a successfull
      LLVM_LINK_LLVM_DYLIB compilation.
      
      - add_llvm_library vs llvm_add_library: One adds a library to libLLVM.so, other
        one doesn't. Lld was using the wrong one, causing symbols to be mupltiply
        defined in things linking to libLLVM.
      - confusion when to use LINK_LIBS vs LINK_COMPONENTS in llvm_add_library
      - not using LLVM_LINK_COMPONENTS for add_lld_tool
      
      With these fixes lld compiles and it's test suite passes both in
      LLVM_LINK_LLVM_DYLIB mode and without it.
      
      Reviewers: ruiu, beanz
      
      Subscribers: llvm-commits, mgorny
      
      Differential Revision: https://reviews.llvm.org/D28397
      
      llvm-svn: 291432
      c9fa114b
    • Rui Ueyama's avatar
      Define sys::path::convert_to_slash · 3e649039
      Rui Ueyama authored
      This patch moves convertToUnixPathSeparator from LLD to LLVM.
      
      Differential Revision: https://reviews.llvm.org/D28444
      
      llvm-svn: 291414
      3e649039
    • Rui Ueyama's avatar
      Add linker-script-included files to reproduce tar files. · ec1c75e0
      Rui Ueyama authored
      Previously, files added using INCLUDE directive weren't added
      to reproduce archives. In this patch, I defined a function to
      open a file and use that from Driver and LinkerScript.
      
      llvm-svn: 291413
      ec1c75e0
  5. Jan 07, 2017
  6. Jan 06, 2017
  7. Jan 05, 2017
Loading