Skip to content
  1. Aug 12, 2013
    • Rui Ueyama's avatar
      [PECOFF] Trim at most one character from imported symbols. · f1ffe8ab
      Rui Ueyama authored
      The import name is not always the same as the symbol name. If the name/type
      field in the import header is NOPREFIX or UNDECORATE, we need to strip some
      characters from symbol to get its import name.
      
      The Microsoft PE/COFF spec is vague if symbol contains more than two
      consecutive characters to be stripped. We used to strip all characters,
      but it doesn't seem right as we couldn't link against the system library
      because of this name mangling. Looks like we shouldn't strip more than one
      character.
      
      llvm-svn: 188154
      f1ffe8ab
  2. Aug 09, 2013
    • Rui Ueyama's avatar
      [PECOFF] Create __ImageBase symbol. · 908606d0
      Rui Ueyama authored
      __ImageBase is a symbol having 4 byte integer equal to the image base address
      of the resultant executable. The linker is expected to create the symbol as if
      it were read from a file.
      
      In order to emit the symbol contents only when the symbol is actually
      referenced, we created a pseudo library file to wrap the linker generated
      symbol. The library file member is emitted to the output only when the member
      is actually referenced, which is suitable for our purpose.
      
      llvm-svn: 188052
      908606d0
    • Rui Ueyama's avatar
      [PECOFF] Support COMDAT section that contains mergeable atoms. · dd72278f
      Rui Ueyama authored
      The COMDAT section is a section with a special attribute to tell the linker
      whether the symbols in the section are allowed to be merged or not. This patch
      add a function to interpret the COMDAT data and set "merge" attribute to the
      atoms accordingly.
      
      LLD supports multiple policies to merge atoms; atoms can be merged by name or
      by content. COFF supports them, and in addition to that, it supports
      choose-the-largest-atom policy, which LLD currently does not support. I simply
      mapped it to merge-by-name attribute for now, but we eventually have to support
      that policy in the core linker.
      
      llvm-svn: 188025
      dd72278f
  3. Aug 08, 2013
  4. Aug 02, 2013
  5. Jul 31, 2013
  6. Jul 30, 2013
  7. Jul 27, 2013
  8. Jul 26, 2013
  9. Jul 25, 2013
  10. Jul 23, 2013
  11. Jul 20, 2013
  12. Jul 19, 2013
  13. Jul 15, 2013
  14. Jul 11, 2013
  15. Jul 05, 2013
  16. Jul 03, 2013
  17. Jul 01, 2013
  18. Jun 30, 2013
  19. Jun 28, 2013
  20. Jun 27, 2013
  21. Jun 19, 2013
  22. Jun 17, 2013
  23. Jun 16, 2013
  24. Jun 15, 2013
Loading