Skip to content
  1. Oct 26, 2016
  2. Oct 20, 2016
  3. Oct 19, 2016
  4. Oct 17, 2016
  5. Oct 14, 2016
    • George Rimar's avatar
      [ELF] - Implemented -z wxneeded. · cc6e567c
      George Rimar authored
      -z wxneeded creates a PHDR PT_OPENBSD_WXNEEDED.
      
      PT_OPENBSD_WXNEEDED
      The array element specifies that a process executing this file may need to be able to map or protect memory regions as simultaneously executable and writable. If the system is unable or unwilling to permit that for this executable then it may fail immediately. This segment type is meaningful only for executable files and is ignored in other objects.
      
      http://man.openbsd.org/OpenBSD-current/man5/elf.5
      
      Differential revision: https://reviews.llvm.org/D25472
      
      llvm-svn: 284226
      cc6e567c
  6. Oct 11, 2016
  7. Oct 01, 2016
  8. Sep 29, 2016
  9. Sep 28, 2016
  10. Sep 26, 2016
  11. Sep 23, 2016
  12. Sep 20, 2016
    • Rafael Espindola's avatar
      Don't produce an error for undefined entry symbol. · db62cbb9
      Rafael Espindola authored
      This is particularly important when the symbol comes from a linker
      script. It is common to use the same linker script for shared
      libraries and executables. Without this we would always fail to link
      shared libraries with -z,defs and a linker script with an ENTRY
      directive.
      
      llvm-svn: 281989
      db62cbb9
  13. Sep 16, 2016
  14. Sep 14, 2016
    • George Rimar's avatar
      [ELF] - Implemented --section-start, -Ttext, -Tdata, -Tbss options. · d73ef173
      George Rimar authored
      --section-start=sectionname=org
      Locate a section in the output file at the absolute address given by org. 
      You may use this option as many times as necessary to locate multiple sections in the command line.
       org must be a single hexadecimal integer; for compatibility with other linkers, 
      you may omit the leading `0x' usually associated with hexadecimal values. 
      Note: there should be no white space between sectionname, the equals sign (“<=>”), and org.
      
      -Tbss=org
      -Tdata=org
      -Ttext=org
      Same as --section-start, with .bss, .data or .text as the sectionname.
      
      Differential revision: https://reviews.llvm.org/D24294
      
      llvm-svn: 281458
      d73ef173
    • Rafael Espindola's avatar
      Use murmurhash2 instead of fnv. · d88d7166
      Rafael Espindola authored
      It is substantially faster by processing 8 bytes at a time.
      
      llvm-svn: 281454
      d88d7166
    • Rui Ueyama's avatar
      Simplify InputFile ownership management. · 38dbd3ee
      Rui Ueyama authored
      Previously, all input files were owned by the symbol table.
      Files were created at various places, such as the Driver, the lazy
      symbols, or the bitcode compiler, and the ownership of new files
      was transferred to the symbol table using std::unique_ptr.
      All input files were then free'd when the symbol table is freed
      which is on program exit.
      
      I think we don't have to transfer ownership just to free all
      instance at once on exit.
      
      In this patch, all instances are automatically collected to a
      vector and freed on exit. In this way, we no longer have to
      use std::unique_ptr.
      
      Differential Revision: https://reviews.llvm.org/D24493
      
      llvm-svn: 281425
      38dbd3ee
  15. Sep 13, 2016
  16. Sep 10, 2016
  17. Sep 08, 2016
  18. Sep 06, 2016
Loading