Skip to content
  1. Jul 11, 2019
    • Johan Vikstrom's avatar
      [clangd] Added highlightings for namespace specifiers. · b6a74e33
      Johan Vikstrom authored
      Summary: Added highlightings for namespace specifiers.
      
      Reviewers: hokein, sammccall, ilya-biryukov
      
      Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64492
      
      llvm-svn: 365745
      b6a74e33
    • Haojian Wu's avatar
      Revert Recommit "[CommandLine] Remove OptionCategory and SubCommand caches from the Option class." · e6695821
      Haojian Wu authored
      This reverts r365675 (git commit 43d75f97)
      
      The patch causes a crash in SupportTests (CommandLineTest.AliasesWithArguments).
      
      llvm-svn: 365742
      e6695821
    • Mikael Holmen's avatar
      [clang-doc] Silence compiler warning with gcc 7.4 [NFC] · c593f5e6
      Mikael Holmen authored
      Without the fix gcc 7.4.0 complains with
      
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp: In member function 'llvm::SmallString<16> clang::doc::{anonymous}::HTMLTag::ToString() const':
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp:165:1: error: control reaches end of non-void function [-Werror=return-type]
       }
       ^
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp: In member function 'bool clang::doc::{anonymous}::HTMLTag::HasInlineChildren() const':
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp:142:1: error: control reaches end of non-void function [-Werror=return-type]
       }
       ^
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp: In member function 'bool clang::doc::{anonymous}::HTMLTag::IsSelfClosing() const':
      /data/repo/master/clang-tools-extra/clang-doc/HTMLGenerator.cpp:126:1: error: control reaches end of non-void function [-Werror=return-type]
       }
       ^
      cc1plus: all warnings being treated as errors
      
      llvm-svn: 365736
      c593f5e6
    • Sterling Augustine's avatar
      rL365634 adds a unique_ptr<CompilationDatabase> in... · 05630a37
      Sterling Augustine authored
      rL365634 adds a unique_ptr<CompilationDatabase> in GobalCompilationDatabase.h:108 but CompilationDatabase is only forward declared. This makes the header not compile standalone, because unique_ptrs expect to have the full-definition of the...
      
      Summary:
      ...template argument.
      
      Remove the forward declaration and include the appropriate header instead.
      Remove CompileCommand too, which is also in the header.
      
      llvm-svn: 365713
      05630a37
  2. Jul 10, 2019
  3. Jul 09, 2019
    • Sam McCall's avatar
      [clangd] Rewrite of logic to rebuild the background index serving structures. · 2f760c44
      Sam McCall authored
      Summary:
      Previously it was rebuilding every 5s by default, which was much too frequent
      in the long run - the goal was to provide an early build. There were also some
      bugs. There were also some bugs, and a dedicated thread was used in production
      but not tested.
      
       - rebuilds are triggered by #TUs built, rather than time. This should scale
         more sensibly to fast vs slow machines.
       - there are two separate indexed-TU thresholds to trigger index build: 5 TUs
         for the first build, 100 for subsequent rebuilds.
       - rebuild is always done on the regular indexing threads, and is affected by
         blockUntilIdle. This means unit/lit tests run the production configuration.
       - fixed a bug where we'd rebuild after attempting to load shards, even if there
         were no shards.
       - the BackgroundIndexTests don't really test the subtleties of the rebuild
         policy (for determinism, we call blockUntilIdle, so rebuild-on-idle is enough
         to pass the tests). Instead, we expose the rebuilder as a separate class and
         have fine-grained tests for it.
      
      Reviewers: kadircet
      
      Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, jfb, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D64291
      
      llvm-svn: 365531
      2f760c44
    • Sam McCall's avatar
      [clangd] Show documentation in hover, and fetch docs from index if needed. · 5a458d6a
      Sam McCall authored
      Summary:
      I assume showing docs is going to be part of structured hover rendering, but
      it's unclear whether that's going to make clangd 9 so this is low-hanging fruit.
      
      (Also fixes a bug uncovered in FormattedString's plain text output: need blank
      lines when text follows codeblocks)
      
      Reviewers: kadircet
      
      Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D64296
      
      llvm-svn: 365522
      5a458d6a
    • Dmitri Gribenko's avatar
      Enhance abseil-faster-strsplit-delimiter to handle other non-printable characters. · f717148b
      Dmitri Gribenko authored
      Summary:
      Currently it fails on cases like '\001'.
      
      Note: Since `StringLiteral::outputString` dumps most nonprintable
      characters in octal value, the exact string literal format isn't preserved,
      e.g. `"\x01"` becomes `'\001'`.
      
      Reviewers: gribozavr
      
      Reviewed By: gribozavr
      
      Subscribers: lebedev.ri, Eugene.Zelenko, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64151
      
      Patch by Xiaoyi Zhang.
      
      llvm-svn: 365463
      f717148b
    • Shaurya Gupta's avatar
      Fixed assertion · cc0203e0
      Shaurya Gupta authored
      llvm-svn: 365460
      cc0203e0
    • Shaurya Gupta's avatar
      dummy variable extraction on a function scope · 1fb97c90
      Shaurya Gupta authored
      Summary:
      - Added extraction to a dummy variable
      - using auto for the dummy variable type for now
      - Works on a function scope
      - Adding braces to create a compound statement not supported yet
      - added unit tests
      
      Reviewers: sammccall, kadircet
      
      Subscribers: mgorny, jkorous, arphaman, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D63773
      
      llvm-svn: 365453
      1fb97c90
  4. Jul 08, 2019
  5. Jul 05, 2019
    • Bjorn Pettersson's avatar
      Bitstream reader: Fix undefined behavior seen after rL364464 · 00922537
      Bjorn Pettersson authored
      Summary:
      After rL364464 the following tests started to fail when
      running the clang-doc tests with an ubsan instrumented
      build of clang-doc:
          Clang Tools :: clang-doc/single-file-public.cpp
          Extra Tools Unit Tests :: clang-doc/./ClangDocTests/BitcodeTest.emitEnumInfoBitcode
          Extra Tools Unit Tests :: clang-doc/./ClangDocTests/BitcodeTest.emitMethodInfoBitcode
          Extra Tools Unit Tests :: clang-doc/./ClangDocTests/BitcodeTest.emitRecordInfoBitcode
          Extra Tools Unit Tests :: clang-doc/./ClangDocTests/SerializeTest.emitInfoWithCommentBitcode
      
      We need to check that the read value is in range for being
      casted to the llvm::bitc::FixedAbbrevIDs enum, before the
      cast in ClangDocBitcodeReader::skipUntilRecordOrBlock.
      
      SerializedDiagnosticReader::skipUntilRecordOrBlock was updated
      in the same way.
      
      Reviewers: jfb
      
      Reviewed By: jfb
      
      Subscribers: Bigcheese, vsapsai, bruno, ilya-biryukov, dexonsmith, kadircet, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64262
      
      llvm-svn: 365239
      00922537
    • Johan Vikstrom's avatar
      [clangd] Added highlighting for variable references (declrefs) · 8ca1c65c
      Johan Vikstrom authored
      Summary: Added highlighting for variable references using VisitDeclRefExpr.
      
      Reviewers: hokein, sammccall
      
      Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64199
      
      llvm-svn: 365205
      8ca1c65c
    • Haojian Wu's avatar
      [clangd] Deduplicate clang-tidy diagnostic messages. · ee08036d
      Haojian Wu authored
      Summary:
      Clang-tidy checks may emit duplicated messages (clang-tidy tool
      deduplicate them in its custom diagnostic consumer), and we may show
      multiple duplicated diagnostics in the UI, which is really bad.
      
      This patch makes clangd do the deduplication, and revert the change
      rL363889.
      
      Reviewers: sammccall
      
      Subscribers: ilya-biryukov, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64127
      
      llvm-svn: 365204
      ee08036d
  6. Jul 04, 2019
Loading