Skip to content
  1. Jul 11, 2019
  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
    • 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
  6. Jul 04, 2019
  7. Jul 03, 2019
  8. Jul 02, 2019
    • Haojian Wu's avatar
      [clangd] Collect the refs when the main file is header. · 7c251fa0
      Haojian Wu authored
      Summary:
      Previously, we only collect refs of the symbols which are declared in
      the preamble and referenced in the main file, it works well when the
      main file is .cpp file.
      
      However, when the main file is .h file (when opening a .h file in the
      editor), we don't collect refs of the symbol declared in this file, so we miss
      these refs in our dynamic index.
      
      A typical scenario:
      
      1. Open Foo.h (which contains class Foo)
      2. Open Foo.cpp, call find references for Foo
      
      And we only get refs from Foo.cpp.
      
      Reviewers: ilya-biryukov
      
      Subscribers: MaskRay, jkorous, arphaman, kadircet, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D63818
      
      llvm-svn: 364893
      7c251fa0
  9. Jul 01, 2019
Loading