Skip to content
  1. Apr 19, 2014
  2. Apr 18, 2014
    • Reid Kleckner's avatar
      Add support for building Sphinx documentation when being built inside LLVM... · f00daf15
      Reid Kleckner authored
      Add support for building Sphinx documentation when being built inside LLVM source tree and using CMake.
      
      Patch by Dan Liew <daniel.liew@imperial.ac.uk>!
      
      llvm-svn: 206662
      f00daf15
    • Reid Kleckner's avatar
      Fix sphinx-build warnings in clang docs. · 230f662d
      Reid Kleckner authored
      llvm-svn: 206661
      230f662d
    • Reid Kleckner's avatar
      Add support for building Sphinx documentation when being inside LLVM source tree and using CMake · 5d21c499
      Reid Kleckner authored
      Patch by Daniel Liew <daniel.liew@imperial.ac.uk>!
      
      llvm-svn: 206660
      5d21c499
    • David Blaikie's avatar
      Compress debug sections only when beneficial. · 76d3a3cd
      David Blaikie authored
      Both ZLIB and the debug info compressed section header ("ZLIB" + the
      size of the uncompressed data) take some constant overhead so in some
      cases the compressed data is actually larger than the uncompressed data.
      In these cases, just don't compress or rename the section at all.
      
      llvm-svn: 206659
      76d3a3cd
    • Justin Bogner's avatar
      CodeGen: Use LLVM's InstrProfReader in -fprofile-instr-use= · 837a6f6f
      Justin Bogner authored
      Update clang to use the InstrProfReader from LLVM to read
      instrumentation based profile data. This also switches us from the
      naive text format to the binary format, since that's what's
      implemented in the reader.
      
      llvm-svn: 206658
      837a6f6f
    • Justin Bogner's avatar
      [Cleanup] Remove a trailing whitespace · fc83c110
      Justin Bogner authored
      llvm-svn: 206657
      fc83c110
    • Justin Bogner's avatar
      ProfileData: Add support for the indexed instrprof format · b7aa2630
      Justin Bogner authored
      This adds support for an indexed instrumentation based profiling
      format, which is just a small header and an on disk hash table.  This
      format will be used by clang's -fprofile-instr-use= for PGO.
      
      llvm-svn: 206656
      b7aa2630
    • Reid Kleckner's avatar
      Added Sphinx documentation generation to CMake build system. · 9f5eb637
      Reid Kleckner authored
      The option LLVM_ENABLE_SPHINX option enables the "docs-llvm-html",
      "docs-llvm-man" targets but does not build them by default. The
      following CMake options have been added that control what targets are
      made available
      
      SPHINX_OUTPUT_HTML
      SPHINX_OUTPUT_MAN
      
      If LLVM_BUILD_DOCS is enabled then the enabled docs-llvm-* targets will
      be built by default and if ``make install`` is run then docs-llvm-html
      and docs-llvm-man will be installed (tested on Linux only).
      
      The add_sphinx_target function is in its own file so it can be included
      by other projects that use Sphinx for their documentation.
      
      Patch by Daniel Liew <daniel.liew@imperial.ac.uk>!
      
      llvm-svn: 206655
      9f5eb637
    • Alexey Samsonov's avatar
      [DWARF parser] Turn DILineInfo into a struct. · d010999a
      Alexey Samsonov authored
      Immutable DILineInfo doesn't bring any benefits and complicates
      code. Also, use std::string instead of SmallString<16> for file
      and function names - their length can vary significantly.
      
      No functionality change.
      
      llvm-svn: 206654
      d010999a
    • David Blaikie's avatar
      Update the fragments of symbols in compressed sections. · c029ab43
      David Blaikie authored
      While unnamed relocations are already cached in side tables in
      ELFObjectWriter::RecordRelocation, symbols still need their fragments
      updated to refer to the newly compressed fragment (even if that fragment
      isn't big enough to fit the offset). Even though we only create
      temporary symbols in debug info sections this comes up in 32 bit builds
      where even temporary symbols in mergeable sections (such as debug_str)
      have to be emitted as named symbols.
      
      I tried a few other ways to do this but they all didn't work for various
      reasons:
      
      1) Canonicalize the MCSymbolData in RecordRelocation, nulling out the
      Fragment (so it didn't have to be updated by CompressDebugSection). This
      doesn't work because some code relies on symbols having fragments to
      indicate that they're defined, I think.
      
      2) Canonicalize the MCSymbolData in RecordRelocation to be "first
      fragment + absolute offset" so it would be cheaper to just test and
      update the fragment in CompressDebugSections. This doesn't work because
      the offset computed in RecordRelocation isn't that of the symbol's
      fragment, it's the passed in fragment (I haven't figured out what that
      fragment is - perhaps it's the location where the relocation is to be
      written). And if the fragment offset has to be computed only for this
      use we might as well just do it when we need to, in
      CompressDebugSection.
      
      I also added an assert to help catch this a bit more clearly, even
      though it is UB. The test case improvements would either assert fail
      and/or valgrind vail without the fix, even if they wouldn't necessarily
      fail the FileCheck output.
      
      llvm-svn: 206653
      c029ab43
    • Chad Rosier's avatar
      [ARM64] Ports the Cortex-A53 Machine Model description from AArch64. · 9149acb0
      Chad Rosier authored
      Summary:
      This port includes the rudimentary latencies that were provided for
      the Cortex-A53 Machine Model in the AArch64 backend. It also changes
      the SchedAlias for COPY in the Cyclone model to an explicit
      WriteRes mapping to avoid conflicts in other subtargets.
      
      Differential Revision: http://reviews.llvm.org/D3427
      Patch by Dave Estes <cestes@codeaurora.org>!
      
      llvm-svn: 206652
      9149acb0
    • Rui Ueyama's avatar
      Fix broken test. · e5097d0e
      Rui Ueyama authored
      llvm-svn: 206651
      e5097d0e
Loading