Skip to content
  1. Jul 15, 2016
  2. Jul 14, 2016
  3. Jul 13, 2016
    • Rui Ueyama's avatar
      Update the readme text. · 729822fe
      Rui Ueyama authored
      llvm-svn: 275305
      729822fe
    • Rui Ueyama's avatar
      Add GotEntrySize/GotPltEntrySize to ELF target. · 803b120b
      Rui Ueyama authored
      Patch by H.J Lu.
      
      For x86-64 psABI, the entry size of .got and .got.plt sections is 8
      bytes for both LP64 and ILP32.  Add GotEntrySize and GotPltEntrySize
      to ELF target instead of using size of ELFT::uint.  Now we can generate
      a simple working x32 executable.
      
      Differential Revision: http://reviews.llvm.org/D22288
      
      llvm-svn: 275301
      803b120b
    • Rui Ueyama's avatar
      Rename VAStart -> ImageBase. NFC. · 484a4951
      Rui Ueyama authored
      Config members are named after corresponding command line options.
      This patch renames VAStart ImageBase so that they are in line with
      --image-base.
      
      Differential Revision: http://reviews.llvm.org/D22277
      
      llvm-svn: 275298
      484a4951
    • Petr Hosek's avatar
      [ELF] Rename the test to reflect the option name · 1ddcacb9
      Petr Hosek authored
      This is to follow the convention of naming the test after the name
      of the option.
      
      Differential Revision: http://reviews.llvm.org/D22276
      
      llvm-svn: 275295
      1ddcacb9
    • George Rimar's avatar
      [ELF] - Add predefined sections to output sections list in one place. · bd699036
      George Rimar authored
      Minor cleanup.
      Currently it looks wierd that having method addPredefinedSections()
      we still add 2 sections outside it without real reasons.
      Patch fixes that.
      
      Differential revision: http://reviews.llvm.org/D19981
      
      llvm-svn: 275269
      bd699036
    • George Rimar's avatar
    • George Rimar's avatar
      [ELF] - Implement extern "c++" version script tag · e05103ea
      George Rimar authored
      Patch implements 'extern' version script tag.
      Currently only values in quotes(") are supported.
      
      Matching of externs is performed in the same pass as exact match of globals.
      
      Differential revision: http://reviews.llvm.org/D21930
      
      llvm-svn: 275257
      e05103ea
    • Saleem Abdulrasool's avatar
      COFF: drop the dependency on LIB.EXE for implibs · f27d4068
      Saleem Abdulrasool authored
      lld currently relies on lib.exe in order to generate an empty import library.
      The "empty" import library consists of 5 members:
        - first linker member
        - second linker member
        - Import Descriptor
        - NULL Import Descriptor
        - NULl Thunk
      
      The first two entries (first and second linker members) are string tables which
      are never updated.  Therefore, they may as well as not be present.  A subsequent
      change to add that is probably warranted.  However, this does not prevent the
      use of the linker.
      
      The Import Descriptor is the content which is most important.  It provides an
      Import Name Table entry for the library (as specified by the LIBRARY directive
      in the DEF file).  Additionally, it contains undefined references to the NULL
      Import Descriptor and the library NULL Thunk Data.  This ensures that the linker
      will pull in the subsequent objects from the import library for the link.  The
      Import Descriptor has a single symbol (__IMPORT_DESCRIPTOR_<Library>) which
      contains 3 relocations, one to the INT (Import Name Table) entry, one to the ILT
      (Import Lookup Table) entry, and one to the IAT (Import Address Table) entry.
      
      The NULL Import Descriptor is the last import descriptor and terminates the
      import descriptor array.  It contains a single symbol
      (__NULL_IMPORT_DESCRIPTOR).
      
      The NULL Thunk contains a single symbol (\x7f<Library>_NULL_THUNK_DATA) and
      provides the terminator for the ILT and IAT.
      
      These files are currently constructed manually following the example of the
      Short Import Library format.  This is arguably less than ideal, and it may be
      possible to use MCAssembler and feed it the fragments to construct the object.
      
      The major difference between the LIB (LINK) generated objects and the ones
      generated here is that they are all one section shorter (.debug$S) as they do
      not contain the debug information and one symbol shorter (@comp.id) as they do
      not contain the RICH signature.
      
      Move the logic related to the librarian into a new source file (Librarian.cpp).
      
      llvm-svn: 275242
      f27d4068
    • Rui Ueyama's avatar
      Add -m elf32_x86_64. · 1e52f25d
      Rui Ueyama authored
      Patch by H.J. Lu.
      
      This patch adds -m elf32_x86_64 to lld. But it doesn't generate working
      x32 binaries.
      
      Differential Revision: http://reviews.llvm.org/D22268
      
      llvm-svn: 275236
      1e52f25d
    • Rui Ueyama's avatar
      Add ILP32 support to X86_64TargetInfo. · 46626e1f
      Rui Ueyama authored
      Patch by H.J. Lu.
      
      As x86-64 psABI supports both LP64 and ILP32, this patch adds <ELFT>
      template to X86_64TargetInfo.
      
      Differential Revision: http://reviews.llvm.org/D22287
      
      llvm-svn: 275235
      46626e1f
    • Rui Ueyama's avatar
      Simplify. NFC. · b933df18
      Rui Ueyama authored
      Config->Pic is true if (Config->Pie || Config->Shared) is true,
      so this extra check was redundant.
      
      llvm-svn: 275234
      b933df18
  4. Jul 12, 2016
  5. Jul 10, 2016
Loading