Skip to content
  1. Jan 11, 2016
  2. Jan 09, 2016
  3. Jan 08, 2016
  4. Jan 07, 2016
    • Andrew Wilkins's avatar
      tools/llvm-config: improve shared library support · 5ae84fec
      Andrew Wilkins authored
      Summary:
      r252532 added support for reporting the monolithic library
      when LLVM_BUILD_LLVM_DYLIB is used. This would only be done
      if the individual components were not found, and the dynamic
      library is found.
      
      This diff extends this as follows:
       - If LLVM_LINK_LLVM_DYLIB is set, then prefer the shared
         library, even if all component libraries exist.
       - Two flags, --link-shared and --link-static are introduced
         to provide explicit guidance. If --link-shared is passed
         and the shared library does not exist, an error results.
      
      Additionally, changed the expected shared library names from
      (e.g.) LLVM-3.8.0 to LLVM-3.8. The former exists only in an
      installation (and then only in CMake builds I think?), and not
      in the build tree; this breaks usage of llvm-config during
      builds, e.g. by llvm-go.
      
      Reviewers: DiamondLovesYou, beanz
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D15033
      
      llvm-svn: 257003
      5ae84fec
  5. Dec 29, 2015
  6. Dec 25, 2015
  7. Dec 23, 2015
  8. Dec 21, 2015
    • David Majnemer's avatar
      [MC, COFF] Support link /incremental conditionally · 03e2cc30
      David Majnemer authored
      Today, we always take into account the possibility that object files
      produced by MC may be consumed by an incremental linker.  This results
      in us initialing fields which vary with time (TimeDateStamp) which harms
      hermetic builds (e.g. verifying a self-host went well) and produces
      sub-optimal code because we cannot assume anything about the relative
      position of functions within a section (call sites can get redirected
      through incremental linker thunks).
      
      Let's provide an MCTargetOption which controls this behavior so that we
      can disable this functionality if we know a-priori that the build will
      not rely on /incremental.
      
      llvm-svn: 256203
      03e2cc30
    • Davide Italiano's avatar
      [llvm-objdump] Use appropriate helper. NFC. · bbd5d169
      Davide Italiano authored
      llvm-svn: 256156
      bbd5d169
  9. Dec 20, 2015
    • Davide Italiano's avatar
      [llvm-objdump] Move COFF function to where it belongs. · e85abf72
      Davide Italiano authored
      Ideally much more stuff should be moved out of llvm-objdump.cpp, but that
      will happen later.
      
      llvm-svn: 256118
      e85abf72
    • Xinliang David Li's avatar
      [PGO] Improve Indexed Profile Reader efficiency · a716cc5c
      Xinliang David Li authored
      With the support of value profiling added, the Indexed prof
      reader gets less efficient. The prof reader initialization
      used to be just reading the file header, but with VP support
      added, initialization needs to walk through all profile keys
      of ondisk hash table resulting in very poor locality and large
      memory increase (keys are stored together with the profile data
      in the mapped profile buffer). Even worse, when the reader is 
      used by the compiler (not llvm-profdata too), the penalty becomes
      very high as compilation of each single module requires touching
      profile data buffer for the whole program. 
      
      In this patch, the icall target values (MD5hash) are no longer eargerly 
      converted back to name strings when the data is read into memory. New
      interface is added to to profile reader so that InstrProfSymtab can be
      lazily created for Indexed profile reader on-demand. Creating of the 
      symtab is intended to be used by llvm-profdata tool for symbolic dumping
      of  VP data. It can be used with compiler (for legacy out of tree uses)
      too but not recommended due to compile time and memory reasons 
      mentioned above.
      
      Some other cleanups are also included: Function Addr to md5 map is now
      consolated into InstrProfSymtab. InstrProfStringtab is no longer used and
      eliminated.
      
      llvm-svn: 256114
      a716cc5c
  10. Dec 19, 2015
  11. Dec 18, 2015
  12. Dec 17, 2015
  13. Dec 16, 2015
Loading