Go to file
Bruno Cardoso Lopes f6a0a72dbe [VFS] Reapply #2: Reconstruct the VFS overlay tree for more accurate lookup
Reapply r269100 and r269270, reverted due to
https://llvm.org/bugs/show_bug.cgi?id=27725. Isolate the testcase that
corresponds to the new feature side of this commit and skip it on
windows hosts until we find why it does not work on these platforms.

Original commit message:

The way we currently build the internal VFS overlay representation leads
to inefficient path search and might yield wrong answers when asked for
recursive or regular directory iteration.

Currently, when reading an YAML file, each YAML root entry is placed
inside a new root in the filesystem overlay. In the crash reproducer, a
simple "@import Foundation" currently maps to 43 roots, and when looking
up paths, we traverse a directory tree for each of these different
roots, until we find a match (or don't). This has two consequences:

- It's slow.
- Directory iteration gives incomplete results since it only return
results within one root - since contents of the same directory can be
declared inside different roots, the result isn't accurate.

This is in part fault of the way we currently write out the YAML file
when emitting the crash reproducer - we could generate only one root and
that would make it fast and correct again. However, we should not rely
on how the client writes the YAML, but provide a good internal
representation regardless.

Build a proper virtual directory tree out of the YAML representation,
allowing faster search and proper iteration. Besides the crash
reproducer, this potentially benefits other VFS clients.

llvm-svn: 269327
2016-05-12 19:13:07 +00:00
clang [VFS] Reapply #2: Reconstruct the VFS overlay tree for more accurate lookup 2016-05-12 19:13:07 +00:00
clang-tools-extra [clang-tidy] Ignore using-declarations defined in marcro in misc-unused-using-decls checks. 2016-05-12 10:00:49 +00:00
compiler-rt Update test expectations after r269291 (Fix a crash when demangling Swift symbols). 2016-05-12 17:08:25 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc math: Add erf ported from amd-builtins 2016-05-06 18:02:30 +00:00
libcxx Apply D20014 - fix a missing return in a test. Fixes PR#27720 2016-05-12 14:31:35 +00:00
libcxxabi libc++abi: make __cxa_call_unexpected visible 2016-05-11 23:56:37 +00:00
libunwind unwind: remove last instance of -Wexpansion-to-defined 2016-04-26 01:11:29 +00:00
lld [ELF] implemented -z defs option 2016-05-11 13:48:41 +00:00
lldb Fix a race in ProcessGDBRemote::MonitorDebugServerProcess 2016-05-12 11:10:01 +00:00
llgo [llgo] llgoi: separate evaluation from printing 2016-04-25 01:18:20 +00:00
llvm [unittests] Use coveragemap_error in CoverageMappingReaderMock (NFC) 2016-05-12 19:01:11 +00:00
openmp New hwloc API compatibility 2016-05-12 11:46:40 +00:00
polly Cleanup rejection log handling [NFC] 2016-05-12 18:50:01 +00:00