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
    • Rui Ueyama's avatar
      COFF: Fix flaky test. · 091b1a65
      Rui Ueyama authored
      This test was flaky because stdout and stderr can be mixed.
      
      llvm-svn: 240918
      091b1a65
  2. Jun 28, 2015
  3. Jun 27, 2015
  4. Jun 26, 2015
  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
Loading