[clang-tools-extra] r339426 - [clangd] Allow consuming limited number of items

2018-08-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 10 04:50:44 2018 New Revision: 339426 URL: http://llvm.org/viewvc/llvm-project?rev=339426&view=rev Log: [clangd] Allow consuming limited number of items This patch modifies `consume` function to allow retrieval of limited number of symbols. This is the "cheap" implem

[clang-tools-extra] r339548 - [clangd] Generate incomplete trigrams for the Dex index

2018-08-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 13 01:57:06 2018 New Revision: 339548 URL: http://llvm.org/viewvc/llvm-project?rev=339548&view=rev Log: [clangd] Generate incomplete trigrams for the Dex index This patch handles trigram generation "short" identifiers and queries. Trigram generator produces incomplet

[clang-tools-extra] r339673 - [clangd] NFC: Cleanup clangd help message

2018-08-14 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Aug 14 05:00:39 2018 New Revision: 339673 URL: http://llvm.org/viewvc/llvm-project?rev=339673&view=rev Log: [clangd] NFC: Cleanup clangd help message Add missed space, fix a typo. Reviewed by: ioeric Differential Revision: https://reviews.llvm.org/D50702 Modified:

[clang-tools-extra] r339687 - NFC: Enforce good formatting across multiple clang-tools-extra files

2018-08-14 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Aug 14 09:03:32 2018 New Revision: 339687 URL: http://llvm.org/viewvc/llvm-project?rev=339687&view=rev Log: NFC: Enforce good formatting across multiple clang-tools-extra files This patch improves readability of multiple files in clang-tools-extra and enforces LLVM Codin

[clang-tools-extra] r339877 - [clangd] NFC: Improve Dex Iterators debugging traits

2018-08-16 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Aug 16 06:19:43 2018 New Revision: 339877 URL: http://llvm.org/viewvc/llvm-project?rev=339877&view=rev Log: [clangd] NFC: Improve Dex Iterators debugging traits This patch improves `dex::Iterator` string representation by incorporating the information about the element w

[clang-tools-extra] r340007 - [clangd] NFC: Mark Workspace Symbol feature complete in the documentation

2018-08-17 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 17 03:14:31 2018 New Revision: 340007 URL: http://llvm.org/viewvc/llvm-project?rev=340007&view=rev Log: [clangd] NFC: Mark Workspace Symbol feature complete in the documentation Workspace Symbol implementation was introduced in D44882 and should be complete now. Rev

[clang-tools-extra] r340155 - [clangd] Implement TRUE Iterator

2018-08-20 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 20 01:47:30 2018 New Revision: 340155 URL: http://llvm.org/viewvc/llvm-project?rev=340155&view=rev Log: [clangd] Implement TRUE Iterator This patch introduces TRUE Iterator which efficiently handles posting lists containing all items within `[0, Size)` range. Review

[clang-tools-extra] r340157 - [clangd] NFC: Cleanup Dex Iterator comments and simplify tests

2018-08-20 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 20 02:16:14 2018 New Revision: 340157 URL: http://llvm.org/viewvc/llvm-project?rev=340157&view=rev Log: [clangd] NFC: Cleanup Dex Iterator comments and simplify tests Proposed changes: * Cleanup comments in `clangd/index/dex/Iterator.h`: Vim's `gq` formatting adde

[clang-tools-extra] r340175 - [clangd] DexIndex implementation prototype

2018-08-20 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 20 07:39:32 2018 New Revision: 340175 URL: http://llvm.org/viewvc/llvm-project?rev=340175&view=rev Log: [clangd] DexIndex implementation prototype This patch is a proof-of-concept Dex index implementation. It has several flaws, which don't allow replacing static MemI

[clang-tools-extra] r340262 - [clangd] Allow using experimental Dex index

2018-08-21 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Aug 21 03:32:27 2018 New Revision: 340262 URL: http://llvm.org/viewvc/llvm-project?rev=340262&view=rev Log: [clangd] Allow using experimental Dex index This patch adds hidden Clangd flag ("use-dex-index") which replaces (currently) default `MemIndex` with `DexIndex` for

[clang-tools-extra] r340263 - [clangd] NFC: Fix broken build

2018-08-21 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Aug 21 03:40:19 2018 New Revision: 340263 URL: http://llvm.org/viewvc/llvm-project?rev=340263&view=rev Log: [clangd] NFC: Fix broken build Modified: clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp Modified: clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp URL:

[clang-tools-extra] r340388 - [clangd] Cleanup after D50897

2018-08-22 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Aug 22 00:17:59 2018 New Revision: 340388 URL: http://llvm.org/viewvc/llvm-project?rev=340388&view=rev Log: [clangd] Cleanup after D50897 The wrong diff that was uploaded to Phabricator was building the wrong index. Modified: clang-tools-extra/trunk/clangd/index/dex

[clang-tools-extra] r340409 - [clangd] Implement BOOST iterator

2018-08-22 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Aug 22 06:44:15 2018 New Revision: 340409 URL: http://llvm.org/viewvc/llvm-project?rev=340409&view=rev Log: [clangd] Implement BOOST iterator This patch introduces BOOST iterator - a substantial block for efficient and high-quality symbol retrieval. The concept of boosti

[clang-tools-extra] r333411 - [clangd] Minor cleanup

2018-05-29 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue May 29 04:50:51 2018 New Revision: 333411 URL: http://llvm.org/viewvc/llvm-project?rev=333411&view=rev Log: [clangd] Minor cleanup This patch silences few clang-tidy warnings, removes unwanted trailing whitespace and enforces coding guidelines. The functionality is not

[clang-tools-extra] r340601 - [clangd] Log memory usage of DexIndex and MemIndex

2018-08-24 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 24 02:12:54 2018 New Revision: 340601 URL: http://llvm.org/viewvc/llvm-project?rev=340601&view=rev Log: [clangd] Log memory usage of DexIndex and MemIndex This patch prints information about built index size estimation to verbose logs. This is useful for optimizing m

[clang-tools-extra] r340605 - [clangd] Implement LIMIT iterator

2018-08-24 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 24 04:25:43 2018 New Revision: 340605 URL: http://llvm.org/viewvc/llvm-project?rev=340605&view=rev Log: [clangd] Implement LIMIT iterator This patch introduces LIMIT iterator, which is very important for improving the quality of search query. LIMIT iterators can be a

[clang-tools-extra] r340729 - [clangd] Use TRUE iterator instead of complete posting list

2018-08-27 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 27 02:47:50 2018 New Revision: 340729 URL: http://llvm.org/viewvc/llvm-project?rev=340729&view=rev Log: [clangd] Use TRUE iterator instead of complete posting list Stop using `$$$` (empty) trigram and generating a posting list with all items. Since TRUE iterator is a

[clang-tools-extra] r340749 - [docs] Mention clangd-dev in clangd documentation

2018-08-27 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 27 08:38:49 2018 New Revision: 340749 URL: http://llvm.org/viewvc/llvm-project?rev=340749&view=rev Log: [docs] Mention clangd-dev in clangd documentation Since the clangd-dev is intended to be the place for clangd-related discussions, we should point new users to thi

[clang-tools-extra] r340759 - Cleanup after rL340729

2018-08-27 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Aug 27 10:26:43 2018 New Revision: 340759 URL: http://llvm.org/viewvc/llvm-project?rev=340759&view=rev Log: Cleanup after rL340729 Modified: clang-tools-extra/trunk/unittests/clangd/DexIndexTests.cpp Modified: clang-tools-extra/trunk/unittests/clangd/DexIndexTests.c

[clang-tools-extra] r340828 - [clangd] Switch to Dex by default for the static index

2018-08-28 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Aug 28 07:55:05 2018 New Revision: 340828 URL: http://llvm.org/viewvc/llvm-project?rev=340828&view=rev Log: [clangd] Switch to Dex by default for the static index Dex is now mature enough to be used as the default static index. This patch performs the switch but introduc

[clang-tools-extra] r341057 - [clangd] Implement iterator cost

2018-08-30 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Aug 30 04:23:58 2018 New Revision: 341057 URL: http://llvm.org/viewvc/llvm-project?rev=341057&view=rev Log: [clangd] Implement iterator cost This patch introduces iterator cost concept to improve the performance of Dex query iterators (mainly, AND iterator). Benchmarks s

[clang-tools-extra] r341060 - [clangd] Fix tests after rL341057

2018-08-30 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Aug 30 05:29:36 2018 New Revision: 341060 URL: http://llvm.org/viewvc/llvm-project?rev=341060&view=rev Log: [clangd] Fix tests after rL341057 Since OR iterator children are not longer sorted by the estimated size, string representation should be different. Modified:

[clang-tools-extra] r341061 - [clang-tidy] Use simple string matching instead of Regex

2018-08-30 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Aug 30 05:42:19 2018 New Revision: 341061 URL: http://llvm.org/viewvc/llvm-project?rev=341061&view=rev Log: [clang-tidy] Use simple string matching instead of Regex Instead of parsing and compiling the `llvm::Regex` each time, it's faster to use basic string matching for

[clang-tools-extra] r341066 - [clangd] Remove UB introduced in rL341057

2018-08-30 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Aug 30 06:30:34 2018 New Revision: 341066 URL: http://llvm.org/viewvc/llvm-project?rev=341066&view=rev Log: [clangd] Remove UB introduced in rL341057 Modified: clang-tools-extra/trunk/clangd/index/dex/Iterator.cpp Modified: clang-tools-extra/trunk/clangd/index/dex/I

[clang-tools-extra] r341182 - [NFC] Use LLVM naming conventions within FileDistance

2018-08-31 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 31 01:19:50 2018 New Revision: 341182 URL: http://llvm.org/viewvc/llvm-project?rev=341182&view=rev Log: [NFC] Use LLVM naming conventions within FileDistance Reviewed by: sammccall Differential Revision: https://reviews.llvm.org/D51527 Modified: clang-tools-ext

[clang-tools-extra] r341184 - NFC: Fix build failure after rL341182

2018-08-31 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 31 01:29:48 2018 New Revision: 341184 URL: http://llvm.org/viewvc/llvm-project?rev=341184&view=rev Log: NFC: Fix build failure after rL341182 Didn't rename another variable reference. Modified: clang-tools-extra/trunk/clangd/FileDistance.cpp Modified: clang-too

[clang-tools-extra] r341190 - [NFC] Cleanup Dex

2018-08-31 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Aug 31 02:17:02 2018 New Revision: 341190 URL: http://llvm.org/viewvc/llvm-project?rev=341190&view=rev Log: [NFC] Cleanup Dex * Use consistent assertion messages in iterators implementations * Silence a bunch of clang-tidy warnings: use `emplace_back` instead of `push_

[clang-tools-extra] r341369 - [clangd] Move buildStaticIndex() to SymbolYAML

2018-09-04 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 4 08:10:40 2018 New Revision: 341369 URL: http://llvm.org/viewvc/llvm-project?rev=341369&view=rev Log: [clangd] Move buildStaticIndex() to SymbolYAML `buildStaticIndex()` is used by two other tools that I'm building, now it's useful outside of `tool/ClangdMain.cpp`.

[clang-tools-extra] r341374 - [clangd] NFC: Change quality type to float

2018-09-04 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 4 08:45:56 2018 New Revision: 341374 URL: http://llvm.org/viewvc/llvm-project?rev=341374&view=rev Log: [clangd] NFC: Change quality type to float Reviewed by: sammccall Differential Revision: https://reviews.llvm.org/D51636 Modified: clang-tools-extra/trunk/cl

[clang-tools-extra] r341542 - [clangd] Implement proximity path boosting for Dex

2018-09-06 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 6 05:54:43 2018 New Revision: 341542 URL: http://llvm.org/viewvc/llvm-project?rev=341542&view=rev Log: [clangd] Implement proximity path boosting for Dex This patch introduces `PathURI` Search Token kind and utilizes it to uprank symbols which are defined in files w

[clang-tools-extra] r341543 - [clangd] NFC: mark single-parameter constructors explicit

2018-09-06 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 6 06:06:04 2018 New Revision: 341543 URL: http://llvm.org/viewvc/llvm-project?rev=341543&view=rev Log: [clangd] NFC: mark single-parameter constructors explicit Code health: prevent implicit conversions to user-defined types. Reviewed By: sammccall Differential Re

[clang-tools-extra] r341544 - [clangd] NFC: Use TopN instead of std::priority_queue

2018-09-06 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 6 06:15:03 2018 New Revision: 341544 URL: http://llvm.org/viewvc/llvm-project?rev=341544&view=rev Log: [clangd] NFC: Use TopN instead of std::priority_queue Quality.cpp defines a structure for convenient storage of Top N items, it should be used instead of the `std:

[clang-tools-extra] r341552 - [clangd] Fix Dex initialization

2018-09-06 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 6 08:10:10 2018 New Revision: 341552 URL: http://llvm.org/viewvc/llvm-project?rev=341552&view=rev Log: [clangd] Fix Dex initialization This patch sets URI schemes of Dex to SymbolCollector's default schemes in case callers tried to pass empty list of schemes. This w

[clang-tools-extra] r341639 - [clangd] NFC: Document URIDistance

2018-09-07 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Sep 7 02:18:58 2018 New Revision: 341639 URL: http://llvm.org/viewvc/llvm-project?rev=341639&view=rev Log: [clangd] NFC: Document URIDistance `URIDistance` constructor should mention that `Sources` must contain *absolute paths*, not URIs. This is not very clear when loo

[clang-tools-extra] r341781 - [clangd] Make advanceTo() faster on Posting Lists

2018-09-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 10 00:57:28 2018 New Revision: 341781 URL: http://llvm.org/viewvc/llvm-project?rev=341781&view=rev Log: [clangd] Make advanceTo() faster on Posting Lists If the current element is already beyond advanceTo()'s DocID, just return instead of doing binary search. This si

[clang-tools-extra] r341784 - [clangd] NFC: Rename DexIndex to Dex

2018-09-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 10 01:23:53 2018 New Revision: 341784 URL: http://llvm.org/viewvc/llvm-project?rev=341784&view=rev Log: [clangd] NFC: Rename DexIndex to Dex Also, cleanup some redundant includes. Reviewed By: sammccall Differential Revision: https://reviews.llvm.org/D51774 Added:

[clang-tools-extra] r341800 - [clangd] Add symbol slab size to index memory consumption estimates

2018-09-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 10 04:46:07 2018 New Revision: 341800 URL: http://llvm.org/viewvc/llvm-project?rev=341800&view=rev Log: [clangd] Add symbol slab size to index memory consumption estimates Currently, `SymbolIndex::estimateMemoryUsage()` returns the "overhead" estimate, i.e. the estim

[clang-tools-extra] r341802 - [clangd] Implement FuzzyFindRequest JSON (de)serialization

2018-09-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 10 04:51:05 2018 New Revision: 341802 URL: http://llvm.org/viewvc/llvm-project?rev=341802&view=rev Log: [clangd] Implement FuzzyFindRequest JSON (de)serialization JSON (de)serialization of `FuzzyFindRequest` might be useful for both D51090 and D51628. Also, this allo

[clang-tools-extra] r341832 - [clangd] Unbreak buildbots after r341802

2018-09-10 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 10 07:31:38 2018 New Revision: 341832 URL: http://llvm.org/viewvc/llvm-project?rev=341832&view=rev Log: [clangd] Unbreak buildbots after r341802 Solution: use std::move when returning result from toJSON(...). Modified: clang-tools-extra/trunk/clangd/index/Index.

[clang-tools-extra] r341921 - [clangd] NFC: Use uint32_t for FuzzyFindRequest limits

2018-09-11 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 11 03:31:38 2018 New Revision: 341921 URL: http://llvm.org/viewvc/llvm-project?rev=341921&view=rev Log: [clangd] NFC: Use uint32_t for FuzzyFindRequest limits Reviewed By: ioeric Differential Revision: https://reviews.llvm.org/D51860 Modified: clang-tools-extra

[clang-tools-extra] r342025 - [clangd] Implement a Proof-of-Concept tool for symbol index exploration

2018-09-12 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Sep 12 00:32:54 2018 New Revision: 342025 URL: http://llvm.org/viewvc/llvm-project?rev=342025&view=rev Log: [clangd] Implement a Proof-of-Concept tool for symbol index exploration Reviewed By: sammccall, ilya-biryukov Differential Revision: https://reviews.llvm.org/D516

[clang-tools-extra] r342026 - [clangd] Add index benchmarks

2018-09-12 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Sep 12 00:49:44 2018 New Revision: 342026 URL: http://llvm.org/viewvc/llvm-project?rev=342026&view=rev Log: [clangd] Add index benchmarks This patch introduces index benchmarks on top of the proposed LLVM benchmark pull. Reviewed By: sammccall, lebedev.ri Differential

[clang-tools-extra] r342036 - Fix buildbots after r342027

2018-09-12 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Sep 12 02:27:55 2018 New Revision: 342036 URL: http://llvm.org/viewvc/llvm-project?rev=342036&view=rev Log: Fix buildbots after r342027 Modified: clang-tools-extra/trunk/test/clangd/index-tools.test Modified: clang-tools-extra/trunk/test/clangd/index-tools.test URL:

[clang-tools-extra] r342124 - [clangd] Don't create child AND and OR iterators with one posting list

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 03:02:48 2018 New Revision: 342124 URL: http://llvm.org/viewvc/llvm-project?rev=342124&view=rev Log: [clangd] Don't create child AND and OR iterators with one posting list `AND( AND( Child ) ... )` -> `AND( Child ... )` `AND( OR( Child ) ... )` -> `AND( Child ...

[clang-tools-extra] r342129 - [docs] Provide pointers to known editor plugins and extensions

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 04:40:12 2018 New Revision: 342129 URL: http://llvm.org/viewvc/llvm-project?rev=342129&view=rev Log: [docs] Provide pointers to known editor plugins and extensions Many editors provide extensions and plugins with LSP Client functionality. Many of these are known t

[clang-tools-extra] r342137 - [clangd] Use JSON format in benchmark requests reader

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 07:21:50 2018 New Revision: 342137 URL: http://llvm.org/viewvc/llvm-project?rev=342137&view=rev Log: [clangd] Use JSON format in benchmark requests reader After `FuzzyFindRequest` JSON (de)serialization was introduced, it should replace ad-hoc fuzzy-find request p

[clang-tools-extra] r342138 - [clangd] Cleanup FuzzyFindRequest filtering limit semantics

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 07:27:03 2018 New Revision: 342138 URL: http://llvm.org/viewvc/llvm-project?rev=342138&view=rev Log: [clangd] Cleanup FuzzyFindRequest filtering limit semantics As discussed during D51860 review, it is better to use `llvm::Optional` here as it has clear semantics

[clang-tools-extra] r342143 - [clangd] Fix Dexp build

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 08:35:55 2018 New Revision: 342143 URL: http://llvm.org/viewvc/llvm-project?rev=342143&view=rev Log: [clangd] Fix Dexp build %s/MaxCandidateCount/Limit/g after rL342138. Modified: clang-tools-extra/trunk/clangd/index/dex/dexp/Dexp.cpp Modified: clang-tools-e

[clang-tools-extra] r342155 - [clangd] Introduce PostingList interface

2018-09-13 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Sep 13 10:11:03 2018 New Revision: 342155 URL: http://llvm.org/viewvc/llvm-project?rev=342155&view=rev Log: [clangd] Introduce PostingList interface This patch abstracts `PostingList` interface and reuses existing implementation. It will be used later to test different `

[clang-tools-extra] r342227 - [clangd] NFC: Fix IndexBenchmark CLI arguments handling

2018-09-14 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Sep 14 05:21:09 2018 New Revision: 342227 URL: http://llvm.org/viewvc/llvm-project?rev=342227&view=rev Log: [clangd] NFC: Fix IndexBenchmark CLI arguments handling Modified: clang-tools-extra/trunk/clangd/benchmarks/IndexBenchmark.cpp Modified: clang-tools-extra/tru

Re: [clang-tools-extra] r342036 - Fix buildbots after r342027

2018-09-14 Thread Kirill Bobyrev via cfe-commits
marked it REQUIRES: > shell in r342282. > > On Wed, Sep 12, 2018 at 2:29 AM Kirill Bobyrev via cfe-commits > mailto:cfe-commits@lists.llvm.org>> wrote: > Author: omtcyfz > Date: Wed Sep 12 02:27:55 2018 > New Revision: 342036 > > URL: http://llvm.org/viewvc/llvm-projec

[clang-tools-extra] r337901 - [clangd] Introduce Dex symbol index search tokens

2018-07-25 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Jul 25 03:34:57 2018 New Revision: 337901 URL: http://llvm.org/viewvc/llvm-project?rev=337901&view=rev Log: [clangd] Introduce Dex symbol index search tokens This patch introduces the core building block of the next-generation Clangd symbol index - Dex. Search tokens are

[clang-tools-extra] r338015 - [clangd] Give an example for symbol-builder usage

2018-07-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Jul 26 02:41:24 2018 New Revision: 338015 URL: http://llvm.org/viewvc/llvm-project?rev=338015&view=rev Log: [clangd] Give an example for symbol-builder usage `global-symbol-builder` help message mentions `-executor=` option, but doesn't give any example of what the value

[clang-tools-extra] r338017 - [clangd] Proof-of-concept query iterators for Dex symbol index

2018-07-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Jul 26 03:42:31 2018 New Revision: 338017 URL: http://llvm.org/viewvc/llvm-project?rev=338017&view=rev Log: [clangd] Proof-of-concept query iterators for Dex symbol index This patch introduces three essential types of query iterators: `DocumentIterator`, `AndIterator`, `

[clang-tools-extra] r338028 - [clangd] Fix unit tests for Dex

2018-07-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Jul 26 07:00:00 2018 New Revision: 338028 URL: http://llvm.org/viewvc/llvm-project?rev=338028&view=rev Log: [clangd] Fix unit tests for Dex Iterators took temporary objects in constructors, objects were invalidated when built with recent Clang which resulted in crashes.

[clang-tools-extra] r338054 - Revert Clangd Dex Iterators patch

2018-07-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Jul 26 11:25:48 2018 New Revision: 338054 URL: http://llvm.org/viewvc/llvm-project?rev=338054&view=rev Log: Revert Clangd Dex Iterators patch This reverts two revisions: * https://reviews.llvm.org/rL338017 * https://reviews.llvm.org/rL338028 They caused crash for Clang

Re: [clang-tools-extra] r338017 - [clangd] Proof-of-concept query iterators for Dex symbol index

2018-07-26 Thread Kirill Bobyrev via cfe-commits
Hi Jeremy, Thank you for reporting the issue and apologies for inconvenience. There was another bug which caused buildbots crashes, I was looking into that before so I missed this one. I built Clang 3.6 and Clang 3.7 locally, simply wrapping everything into std::move didn't resolve the issue, I r

[clang-tools-extra] r338116 - [clangd] Return Dex Iterators

2018-07-27 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Jul 27 02:54:27 2018 New Revision: 338116 URL: http://llvm.org/viewvc/llvm-project?rev=338116&view=rev Log: [clangd] Return Dex Iterators The original Dex Iterators patch (https://reviews.llvm.org/rL338017) caused problems for Clang 3.6 and Clang 3.7 due to the compiler

[clang-tools-extra] r326051 - [clangd] Address FIXME and fix comment

2018-02-24 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Sat Feb 24 23:21:16 2018 New Revision: 326051 URL: http://llvm.org/viewvc/llvm-project?rev=326051&view=rev Log: [clangd] Address FIXME and fix comment * Address a FIXME by warning the user that both -run-synchronously and -j X are passed. * Fix a comment to suppress clang-

Re: [clang-tools-extra] r342227 - [clangd] NFC: Fix IndexBenchmark CLI arguments handling

2018-09-18 Thread Kirill Bobyrev via cfe-commits
misunderstood you, could you please elaborate on the proposed idea? Kind regards, Kirill > On 14 Sep 2018, at 14:46, Roman Lebedev wrote: > > On Fri, Sep 14, 2018 at 3:21 PM, Kirill Bobyrev via cfe-commits > wrote: >> Author: omtcyfz >> Date: Fri Sep 14 05:21:09 2018 >> N

Re: [clang-tools-extra] r342227 - [clangd] NFC: Fix IndexBenchmark CLI arguments handling

2018-09-18 Thread Kirill Bobyrev via cfe-commits
usted to IndexFilename > >> I might have misunderstood you, could you please elaborate on the proposed >> idea? >> >> Kind regards, >> Kirill > Roman. > >>> On 14 Sep 2018, at 14:46, Roman Lebedev wrote: >>> >>> On Fri, Sep 14, 2018

[clang-tools-extra] r342866 - [clangd] Force Dex to respect symbol collector flags

2018-09-24 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Mon Sep 24 01:45:18 2018 New Revision: 342866 URL: http://llvm.org/viewvc/llvm-project?rev=342866&view=rev Log: [clangd] Force Dex to respect symbol collector flags `Dex` should utilize `FuzzyFindRequest.RestrictForCodeCompletion` flags and omit symbols not meant for code co

[clang-tools-extra] r342957 - [clangd] NFC: Remove test duplicate

2018-09-25 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 25 02:47:01 2018 New Revision: 342957 URL: http://llvm.org/viewvc/llvm-project?rev=342957&view=rev Log: [clangd] NFC: Remove test duplicate `FuzzyMatchQ` test was a duplicate of `FuzzyMatch` pulled from MemIndex tests. Modified: clang-tools-extra/trunk/unittests

[clang-tools-extra] r342965 - [clangd] Implement VByte PostingList compression

2018-09-25 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 25 04:54:51 2018 New Revision: 342965 URL: http://llvm.org/viewvc/llvm-project?rev=342965&view=rev Log: [clangd] Implement VByte PostingList compression This patch implements Variable-length Byte compression of `PostingList`s to sacrifice some performance for lower m

[clang-tools-extra] r342970 - [clangd] Fix some buildbots after r342965

2018-09-25 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 25 06:14:11 2018 New Revision: 342970 URL: http://llvm.org/viewvc/llvm-project?rev=342970&view=rev Log: [clangd] Fix some buildbots after r342965 Some compilers fail to parse struct default member initializer. Modified: clang-tools-extra/trunk/clangd/index/dex/P

[clang-tools-extra] r342974 - [clangd] NFC: Simplify code, enforce LLVM Coding Standards

2018-09-25 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Tue Sep 25 06:58:48 2018 New Revision: 342974 URL: http://llvm.org/viewvc/llvm-project?rev=342974&view=rev Log: [clangd] NFC: Simplify code, enforce LLVM Coding Standards For consistency, functional-style code pieces are replaced with their simple counterparts to improve rea

[clang-tools-extra] r343116 - [docs] Update PostingList string representation format

2018-09-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Sep 26 07:59:49 2018 New Revision: 343116 URL: http://llvm.org/viewvc/llvm-project?rev=343116&view=rev Log: [docs] Update PostingList string representation format Because `PostingList` objects are compressed, it is now impossible to see elements other than the current on

[clang-tools-extra] r343117 - [clangd] Fix bugs with incorrect memory estimate report

2018-09-26 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Sep 26 08:06:23 2018 New Revision: 343117 URL: http://llvm.org/viewvc/llvm-project?rev=343117&view=rev Log: [clangd] Fix bugs with incorrect memory estimate report * With the current implementation, `sizeof(std::vector)` is added twice to the `Dex` memory estimate which

[clang-tools-extra] r343306 - [docs] Fix links in Clangd documentation

2018-09-28 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Fri Sep 28 02:32:47 2018 New Revision: 343306 URL: http://llvm.org/viewvc/llvm-project?rev=343306&view=rev Log: [docs] Fix links in Clangd documentation Add missing `_` after each `external link `_, as required by the reStructuredText specification. Modifi

[clang-tools-extra] r343937 - [clangd] NFC: Migrate to LLVM STLExtras API where possible

2018-10-07 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Sun Oct 7 07:49:41 2018 New Revision: 343937 URL: http://llvm.org/viewvc/llvm-project?rev=343937&view=rev Log: [clangd] NFC: Migrate to LLVM STLExtras API where possible This patch improves readability by migrating `std::function(ForwardIt start, ForwardIt end, ...)` to LLV

[clang-tools-extra] r336257 - [clang-tools-extra] Cleanup documentation routine

2018-07-04 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Jul 4 03:18:03 2018 New Revision: 336257 URL: http://llvm.org/viewvc/llvm-project?rev=336257&view=rev Log: [clang-tools-extra] Cleanup documentation routine The following issues are resolved: * Doxygen didn't generate documentation for a bunch of existing tools due to

[clang-tools-extra] r336330 - [NFS] Wipe trailing whitespaces

2018-07-05 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Thu Jul 5 02:37:26 2018 New Revision: 336330 URL: http://llvm.org/viewvc/llvm-project?rev=336330&view=rev Log: [NFS] Wipe trailing whitespaces This patch is a preparation for another one containing meaningful changes. This patch simply removes trailing whitespaces in few fi

r336810 - [clangd] Uprank delcarations when "using q::name" is present in the main file

2018-07-11 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Jul 11 07:49:49 2018 New Revision: 336810 URL: http://llvm.org/viewvc/llvm-project?rev=336810&view=rev Log: [clangd] Uprank delcarations when "using q::name" is present in the main file Having `using qualified::name;` for some symbol is an important signal for clangd cod

[clang-tools-extra] r336810 - [clangd] Uprank delcarations when "using q::name" is present in the main file

2018-07-11 Thread Kirill Bobyrev via cfe-commits
Author: omtcyfz Date: Wed Jul 11 07:49:49 2018 New Revision: 336810 URL: http://llvm.org/viewvc/llvm-project?rev=336810&view=rev Log: [clangd] Uprank delcarations when "using q::name" is present in the main file Having `using qualified::name;` for some symbol is an important signal for clangd cod

[Differential] D83826: [clangd] Don't send invalid messages from remote index

2020-07-21 Thread Kirill Bobyrev via cfe-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGeef162c330b0: [clangd] Don't send invalid messages from remote ind

[clang-tools-extra] eef162c - [clangd] Don't send invalid messages from remote index

2020-07-21 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-21T11:05:03+02:00 New Revision: eef162c330b02fdc53ec33e5549635be5c5911fa URL: https://github.com/llvm/llvm-project/commit/eef162c330b02fdc53ec33e5549635be5c5911fa DIFF: https://github.com/llvm/llvm-project/commit/eef162c330b02fdc53ec33e5549635be5c5911fa.diff

[clang-tools-extra] 4470b8c - [clangd] Fix assertions for D83826

2020-07-21 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-21T11:20:31+02:00 New Revision: 4470b8c6a6b16de3b4f1f3c4cf81137a9fe4c8a1 URL: https://github.com/llvm/llvm-project/commit/4470b8c6a6b16de3b4f1f3c4cf81137a9fe4c8a1 DIFF: https://github.com/llvm/llvm-project/commit/4470b8c6a6b16de3b4f1f3c4cf81137a9fe4c8a1.diff

[clang-tools-extra] 7d591e1 - [clangd] Complete the fix for (Local|Remote)IndexRoot confusion

2020-07-21 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-21T11:53:17+02:00 New Revision: 7d591e123e0eb2d3415840de9c2b45c3742f0eaa URL: https://github.com/llvm/llvm-project/commit/7d591e123e0eb2d3415840de9c2b45c3742f0eaa DIFF: https://github.com/llvm/llvm-project/commit/7d591e123e0eb2d3415840de9c2b45c3742f0eaa.diff

[clang-tools-extra] 3975c3b - [clangd] Fix conversion from Windows UNC paths to file URI format.

2020-07-22 Thread Kirill Bobyrev via cfe-commits
Author: Ilya Golovenko Date: 2020-07-22T12:13:09+02:00 New Revision: 3975c3be80412bb6b1376bcef53ebce53984ddd7 URL: https://github.com/llvm/llvm-project/commit/3975c3be80412bb6b1376bcef53ebce53984ddd7 DIFF: https://github.com/llvm/llvm-project/commit/3975c3be80412bb6b1376bcef53ebce53984ddd7.diff

[clang-tools-extra] 974ffee - [clangd] Switch from EXPECT_TRUE to ASSERT_TRUE in remote marshalling tests

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-27T10:44:23+02:00 New Revision: 974ffee9ccd70703c6edb880ac4934a5dc12e56d URL: https://github.com/llvm/llvm-project/commit/974ffee9ccd70703c6edb880ac4934a5dc12e56d DIFF: https://github.com/llvm/llvm-project/commit/974ffee9ccd70703c6edb880ac4934a5dc12e56d.diff

[clang-tools-extra] 37ac559 - [clangd] Add option to use remote index as static index

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-27T11:24:15+02:00 New Revision: 37ac559fccd46dcec246ceb3907c8d3910728c69 URL: https://github.com/llvm/llvm-project/commit/37ac559fccd46dcec246ceb3907c8d3910728c69 DIFF: https://github.com/llvm/llvm-project/commit/37ac559fccd46dcec246ceb3907c8d3910728c69.diff

[clang-tools-extra] f49a7ad - [clangd] Add marshalling code for all request types

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-27T14:16:03+02:00 New Revision: f49a7ad8c0854a01b945c27de2fd313b9013ae0d URL: https://github.com/llvm/llvm-project/commit/f49a7ad8c0854a01b945c27de2fd313b9013ae0d DIFF: https://github.com/llvm/llvm-project/commit/f49a7ad8c0854a01b945c27de2fd313b9013ae0d.diff

Re: [PATCH] D83817: [clangd] Add option to use remote index as static index

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Ah, that's why... Thank you again and apologies for inconovinience! On Mon, Jul 27, 2020 at 3:06 PM Hans Wennborg via Phabricator < revi...@reviews.llvm.org> wrote: > hans added inline comments. > > > > Comment at: clang-tools-extra/clangd/tool/ClangdMain.cpp:702 >} > + if (

Re: [PATCH] D83817: [clangd] Add option to use remote index as static index

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Uh, you're right, thank you for the fix! I wonder why that was building for me... Again, thank you for noticing! Kirill On Mon, Jul 27, 2020 at 2:41 PM Hans Wennborg via Phabricator < revi...@reviews.llvm.org> wrote: > hans added inline comments. > > > > Comment at: clang-tools

[clang-tools-extra] 731043c - [clangd] Add more logs and attach tracers to remote index server routines

2020-07-27 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-27T20:45:18+02:00 New Revision: 731043c0c494672efe1eeea9ee0f0c7788813dea URL: https://github.com/llvm/llvm-project/commit/731043c0c494672efe1eeea9ee0f0c7788813dea DIFF: https://github.com/llvm/llvm-project/commit/731043c0c494672efe1eeea9ee0f0c7788813dea.diff

[clang-tools-extra] fb22678 - [clangd] Use elog instead of llvm::errs, log instead of llvm::outs

2020-07-28 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-29T01:48:24+02:00 New Revision: fb22678cd67801e41af4917acceb4014ab5d007e URL: https://github.com/llvm/llvm-project/commit/fb22678cd67801e41af4917acceb4014ab5d007e DIFF: https://github.com/llvm/llvm-project/commit/fb22678cd67801e41af4917acceb4014ab5d007e.diff

[clang-tools-extra] 1603470 - [clangd] Fix clangd-indexeer builds after D84697

2020-07-29 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-29T10:27:11+02:00 New Revision: 1603470e59a99a39ebdc4bf62a3a16c8c4ebea36 URL: https://github.com/llvm/llvm-project/commit/1603470e59a99a39ebdc4bf62a3a16c8c4ebea36 DIFF: https://github.com/llvm/llvm-project/commit/1603470e59a99a39ebdc4bf62a3a16c8c4ebea36.diff

[clang-tools-extra] a262f0f - [clangd] Implement Relations request for remote index

2020-07-30 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-30T12:57:33+02:00 New Revision: a262f0fea46ce08008f3462c336c3d7107e98b27 URL: https://github.com/llvm/llvm-project/commit/a262f0fea46ce08008f3462c336c3d7107e98b27 DIFF: https://github.com/llvm/llvm-project/commit/a262f0fea46ce08008f3462c336c3d7107e98b27.diff

[clang-tools-extra] c4b7bfd - [clangd] NFC: Spell out types in index callback arguments

2020-07-30 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-30T17:12:29+02:00 New Revision: c4b7bfdff65e5883bfe64248ac244b9fadf531ee URL: https://github.com/llvm/llvm-project/commit/c4b7bfdff65e5883bfe64248ac244b9fadf531ee DIFF: https://github.com/llvm/llvm-project/commit/c4b7bfdff65e5883bfe64248ac244b9fadf531ee.diff

[clang-tools-extra] f058673 - [dexp] NFC: Change positional argument format

2020-04-15 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-04-15T13:28:07+02:00 New Revision: f05867339737bb203b64a95e096fee509313122d URL: https://github.com/llvm/llvm-project/commit/f05867339737bb203b64a95e096fee509313122d DIFF: https://github.com/llvm/llvm-project/commit/f05867339737bb203b64a95e096fee509313122d.diff

[clang-tools-extra] 348364b - [clangd] Don't produce snippets when completion location is followed by parenthesis

2020-06-09 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-06-09T13:59:29+02:00 New Revision: 348364bffd379e291501dc49b192cdd2adf83811 URL: https://github.com/llvm/llvm-project/commit/348364bffd379e291501dc49b192cdd2adf83811 DIFF: https://github.com/llvm/llvm-project/commit/348364bffd379e291501dc49b192cdd2adf83811.diff

[clang] 550c456 - Revert "Prevent IR-gen from emitting consteval declarations"

2020-06-15 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-06-15T12:14:15+02:00 New Revision: 550c4562d18a6ab6ce60a062dceb163313da0ddd URL: https://github.com/llvm/llvm-project/commit/550c4562d18a6ab6ce60a062dceb163313da0ddd DIFF: https://github.com/llvm/llvm-project/commit/550c4562d18a6ab6ce60a062dceb163313da0ddd.diff

[clang-tools-extra] 22a3e40 - [clangd] Set gRPC deadlines to all remote index requests

2020-07-01 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-01T12:46:29+02:00 New Revision: 22a3e4055f4382e8ebbf67705501e6969c6b398b URL: https://github.com/llvm/llvm-project/commit/22a3e4055f4382e8ebbf67705501e6969c6b398b DIFF: https://github.com/llvm/llvm-project/commit/22a3e4055f4382e8ebbf67705501e6969c6b398b.diff

[clang-tools-extra] 93bb994 - [clangd] Implement path and URI translation for remote index

2020-07-09 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-09T12:52:55+02:00 New Revision: 93bb9944cb577f0529636dc5acfba16026740962 URL: https://github.com/llvm/llvm-project/commit/93bb9944cb577f0529636dc5acfba16026740962 DIFF: https://github.com/llvm/llvm-project/commit/93bb9944cb577f0529636dc5acfba16026740962.diff

[clang-tools-extra] d7d1af3 - [clangd] Fix DocumentSymbol ranges

2020-07-13 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-13T15:02:53+02:00 New Revision: d7d1af39168ce8afd041f3ae8db1d1fd3d4f70ac URL: https://github.com/llvm/llvm-project/commit/d7d1af39168ce8afd041f3ae8db1d1fd3d4f70ac DIFF: https://github.com/llvm/llvm-project/commit/d7d1af39168ce8afd041f3ae8db1d1fd3d4f70ac.diff

[clang-tools-extra] 7a514c9 - [clangd] Implement textDocument/foldingRange

2020-07-14 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-14T09:28:42+02:00 New Revision: 7a514c9bf8f2513b57aee685879dd2c104381d99 URL: https://github.com/llvm/llvm-project/commit/7a514c9bf8f2513b57aee685879dd2c104381d99 DIFF: https://github.com/llvm/llvm-project/commit/7a514c9bf8f2513b57aee685879dd2c104381d99.diff

[clang-tools-extra] c11c78a - [clangd] Use llvm::errs() instead of outs() for errors

2020-07-15 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-07-15T14:34:29+02:00 New Revision: c11c78a1bd0b3275bf845604aae3c94e97acceed URL: https://github.com/llvm/llvm-project/commit/c11c78a1bd0b3275bf845604aae3c94e97acceed DIFF: https://github.com/llvm/llvm-project/commit/c11c78a1bd0b3275bf845604aae3c94e97acceed.diff

[clang-tools-extra] cee80c0 - [clangd] Pull installed gRPC and introduce clangd-remote-(server|client)

2020-04-16 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-04-16T13:55:08+02:00 New Revision: cee80c0489e96c36269388b2aacd4da1c5714a66 URL: https://github.com/llvm/llvm-project/commit/cee80c0489e96c36269388b2aacd4da1c5714a66 DIFF: https://github.com/llvm/llvm-project/commit/cee80c0489e96c36269388b2aacd4da1c5714a66.diff

[clang-tools-extra] 67b2dbd - [clangd] Extend dexp to support remote index

2020-04-24 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-04-24T13:59:21+02:00 New Revision: 67b2dbd5a33583fe148fd12f141e15301cfe99d1 URL: https://github.com/llvm/llvm-project/commit/67b2dbd5a33583fe148fd12f141e15301cfe99d1 DIFF: https://github.com/llvm/llvm-project/commit/67b2dbd5a33583fe148fd12f141e15301cfe99d1.diff

[clang-tools-extra] 1ccfe47 - [clangd] Fix build when CLANGD_REMOTE is not enabled

2020-04-24 Thread Kirill Bobyrev via cfe-commits
Author: Kirill Bobyrev Date: 2020-04-24T14:07:39+02:00 New Revision: 1ccfe475a753a93d647be78edff000b9d6667ff7 URL: https://github.com/llvm/llvm-project/commit/1ccfe475a753a93d647be78edff000b9d6667ff7 DIFF: https://github.com/llvm/llvm-project/commit/1ccfe475a753a93d647be78edff000b9d6667ff7.diff

  1   2   3   4   5   6   7   >