Skip to content
  1. Jun 29, 2015
    • Rui Ueyama's avatar
      COFF: Fix logic to find default entry name or subsystem. · 45044f47
      Rui Ueyama authored
      The previous logic to find default entry name or subsystem does not
      seem correct (i.e. was not compatible with MSVC linker). Previously,
      default entry name was inferred from CRT functions and user-defined
      entry functions. Subsystem was inferred from CRT functions.
      
      Default entry name and subsystem are now inferred based on the
      following table. Note that we no longer use CRT functions to infer
      them.
      
                     Entry name           Subsystem
        main         mainCRTStartup       console
        wmain        wmainCRTStartup      console
        WinMain      WinMainCRTStartup    windows
        wWinMain     wWinMainCRTStartup   windows
      
      llvm-svn: 240922
      45044f47
    • Rui Ueyama's avatar
      COFF: Allow mangled symbols as arguments for /export. · f5313b34
      Rui Ueyama authored
      Usually dllexported symbols are defined with 'extern "C"',
      so identifying them is easy. We can just do hash table lookup
      to look up exported symbols.
      
      However, C++ non-member functions are also allowed to be exported,
      and they can be specified with unmangled name. So, if /export:foo
      is given, we need to look up not only "foo" but also its all
      mangled names. In MSVC mangling scheme, that means that we need to
      look up any symbol which starts with "?foo@@Y".
      
      In this patch, we scan the entire symbol table to search for
      a mangled symbol. The symbol table is a DenseMap, and that doesn't
      support table lookup by string prefix. This is of course very
      inefficient. But that should be probably OK because the user
      should always add 'extern "C"' to dllexported symbols.
      
      llvm-svn: 240919
      f5313b34
  2. Jun 28, 2015
  3. Jun 27, 2015
  4. Jun 26, 2015
    • Rui Ueyama's avatar
      COFF: Fix delay-import tables. · 382dc96e
      Rui Ueyama authored
      There were a few issues with the previous delay-import tables.
      
       - "Attribute" field should have been 1 instead of 0.
         (I don't know the meaning of this field, though.)
       - LEA and CALL operands had wrong addresses.
       - Address tables are in .didat (which is read-only).
         They should have been in .data.
      
      llvm-svn: 240837
      382dc96e
    • Peter Collingbourne's avatar
      Fix MSVC build. · baf5f87b
      Peter Collingbourne authored
      llvm-svn: 240818
      baf5f87b
    • Peter Collingbourne's avatar
      COFF: Implement /lldmap flag. · be54955b
      Peter Collingbourne authored
      This flag can be used to produce a map file, which is essentially a list
      of objects linked into the final output file together with the RVAs of
      their symbols. Because our format differs from MSVC's we expose it as a
      separate flag.
      
      Differential Revision: http://reviews.llvm.org/D10773
      
      llvm-svn: 240812
      be54955b
    • Rui Ueyama's avatar
      COFF: Align DLL import thunks on 16-byte boundaries. · 7383562b
      Rui Ueyama authored
      llvm-svn: 240806
      7383562b
    • Rui Ueyama's avatar
      COFF: Fix README. · 5740abd7
      Rui Ueyama authored
      llvm-svn: 240802
      5740abd7
    • Rui Ueyama's avatar
      COFF: Update README with the latest performance numbers. · 3afe9082
      Rui Ueyama authored
      llvm-svn: 240759
      3afe9082
    • Rui Ueyama's avatar
      COFF: Change symbol resolution order for entry and /include. · 32f8e1cb
      Rui Ueyama authored
      We were resolving entry symbols and /include'd symbols after all other
      symbols are resolved. But looks like it's too late. I found that it
      causes some program to fail to link.
      
      Let's say we have an object file A which defines symbols X and Y in an
      archive. We also have another file B after A which defines X, Y and
      _DLLMainCRTStartup in another archive. They conflict each other, so
      either A or B can be linked.
      
      If we have _DLLMainCRTStartup as an undefined symbol, file B is always
      chosen. If not, there's a chance that A is chosen. If the linker
      find it needs _DllMainCRTStartup after that, it's too late.
      
      This patch adds undefined symbols to the symbol table as soon as
      possible to fix the issue.
      
      llvm-svn: 240757
      32f8e1cb
    • Rui Ueyama's avatar
      COFF: Fix local absolute symbols. · ccde19d7
      Rui Ueyama authored
      Absolute symbols were always handled as external symbols, so if two
      or more object files define the same absolute symbol, they would
      conflict even if the symbol is private to each file.
      This patch fixes that bug.
      
      llvm-svn: 240756
      ccde19d7
    • Rui Ueyama's avatar
      COFF: Don't read non-x64 object files. · a2994887
      Rui Ueyama authored
      Currently the new LLD supports only x86-64.
      
      llvm-svn: 240749
      a2994887
    • Rui Ueyama's avatar
      COFF: Rename /opt:icf -> /opt:lldicf. · f799edef
      Rui Ueyama authored
      ICF implemented in LLD is so experimental that we don't want to
      enable that even if /opt:icf option is passed. I'll rename it back
      once the feature is complete.
      
      llvm-svn: 240721
      f799edef
    • Rui Ueyama's avatar
      COFF: Better error message for duplicate symbols. · 68633f17
      Rui Ueyama authored
      Now the symbol table prints out not only symbol names but
      also file names for duplicate symbols.
      
      llvm-svn: 240719
      68633f17
    • Rui Ueyama's avatar
      COFF: Merge DefinedRegular and DefinedCOMDAT. · 9b921e5d
      Rui Ueyama authored
      I split them in r240319 because I thought they are different enough
      that we should treat them as different types. It turned out that
      that was not a good idea. They are so similar that we ended up having
      many duplicate code.
      
      llvm-svn: 240706
      9b921e5d
  5. Jun 25, 2015
    • Rui Ueyama's avatar
      COFF: Fix lexer for the module-definition file. · 5817ebb0
      Rui Ueyama authored
      Previously it would hang if there's a stray punctuation (e.g. ?).
      
      llvm-svn: 240697
      5817ebb0
    • Rui Ueyama's avatar
      COFF: Remove dead code. · b0c001c0
      Rui Ueyama authored
      llvm-svn: 240682
      b0c001c0
    • Rui Ueyama's avatar
      COFF: Devirtualize mark(), markLive() and isCOMDAT(). · fc510f4c
      Rui Ueyama authored
      Only SectionChunk can be dead-stripped. Previously,
      all types of chunks implemented these functions,
      but their functions were blank.
      
      Likewise, only DefinedRegular and DefinedCOMDAT symbols
      can be dead-stripped. markLive() function was implemented
      for other symbol types, but they were blank.
      
      I started thinking that the change I made in r240319 was
      a mistake. I separated DefinedCOMDAT from DefinedRegular
      because I thought that would make the code cleaner, but now
      we want to handle them as the same type here. Maybe we
      should roll it back.
      
      This change should improve readability a bit as this removes
      some dubious uses of reinterpret_cast. Previously, we
      assumed that all COMDAT chunks are actually SectionChunks,
      which was not very obvious.
      
      llvm-svn: 240675
      fc510f4c
    • Rui Ueyama's avatar
      COFF: Simplify. NFC. · f34c0885
      Rui Ueyama authored
      llvm-svn: 240666
      f34c0885
    • Rui Ueyama's avatar
      COFF: Use std::equal to compare two lists of relocations. · c6fcfbc9
      Rui Ueyama authored
      llvm-svn: 240665
      c6fcfbc9
    • Rui Ueyama's avatar
      COFF: Don't use COFFHeader->NumberOfRelocations. · 02c30279
      Rui Ueyama authored
      The size of the field is 16 bit, so it's inaccurate if the
      number of relocations in a section is more than 65535.
      
      llvm-svn: 240661
      02c30279
    • Rui Ueyama's avatar
      COFF: Fix a bug of __imp_ symbol. · 88e0f920
      Rui Ueyama authored
      The change I made in r240620 was not correct. If a symbol foo is
      defined, and if you use __imp_foo, __imp_foo symbol is automatically
      defined as a pointer (not just an alias) to foo.
      
      Now that we need to create a chunk for automatically-created symbols.
      I defined LocalImportChunk class for them.
      
      llvm-svn: 240622
      88e0f920
    • Rui Ueyama's avatar
      COFF: Handle undefined symbols starting with __imp_ in a special way. · d7666535
      Rui Ueyama authored
      MSVC linker is able to link an object file created from the following code.
      Note that __imp_hello is not defined anywhere.
      
        void hello() { printf("Hello\n"); }
        extern void (*__imp_hello)();
        int main() { __imp_hello(); }
      
      Function symbols exported from DLLs are automatically mangled by appending
      __imp_ prefix, so they have two names (original one and with the prefix).
      This "feature" seems to simulate that behavior even for non-DLL symbols.
      
      This is in my opnion very odd feature. Even MSVC linker warns if you use this.
      I'm adding that anyway for the sake of compatibiltiy.
      
      llvm-svn: 240620
      d7666535
    • Rui Ueyama's avatar
      COFF: Use COFFObjectFile::getRelocations(). NFC. · 42aa00b3
      Rui Ueyama authored
      llvm-svn: 240614
      42aa00b3
    • Rui Ueyama's avatar
      COFF: Cache raw pointers to relocation tables. · cde92423
      Rui Ueyama authored
      Getting an iterator to the relocation table is very hot operation
      in the linker. We do that not only to apply relocations but also
      to mark live sections and to do ICF.
      
      libObject's interface is slow. By caching pointers to the first
      relocation table entries makes the linker 6% faster to self-link.
      
      We probably need to fix libObject as well.
      
      llvm-svn: 240603
      cde92423
  6. Jun 24, 2015
Loading