Skip to content
  1. Jul 11, 2012
  2. Jul 10, 2012
  3. Jun 27, 2012
  4. Jun 16, 2012
  5. Jun 15, 2012
  6. May 03, 2012
  7. Feb 05, 2012
  8. Dec 22, 2011
  9. Nov 17, 2011
  10. Nov 06, 2011
  11. Sep 14, 2011
  12. Sep 13, 2011
  13. Jul 23, 2011
  14. Jun 03, 2011
  15. Mar 18, 2011
  16. Mar 16, 2011
  17. Mar 15, 2011
    • Argyrios Kyrtzidis's avatar
      Stop leaking file descriptors. · 669b0b15
      Argyrios Kyrtzidis authored
      After the open+fstat optimization, files were already opened for FileManager::getBufferForFile() and we closed them after reading them.
      The problem was that when -working-directory was passed, the code path that actually reuses & closes the already opened file descriptor
      was not followed.
      
      llvm-svn: 127639
      669b0b15
  18. Mar 14, 2011
  19. Mar 07, 2011
  20. Mar 06, 2011
  21. Feb 11, 2011
    • Zhanyong Wan's avatar
      Uses llvm::sys::path instead of hand-rolled algorithm in FileManager. · f3c0ff73
      Zhanyong Wan authored
      Reviewed by dgregor.
      
      llvm-svn: 125407
      f3c0ff73
    • Zhanyong Wan's avatar
      Improves Clang's virtual file handling. · e1dd3e2c
      Zhanyong Wan authored
      This patch contains:
      
      - making some of the existing comments more accurate in the presence
      of virtual files/directories.
      
      - renaming some private data members of FileManager to match their roles better.
      
      - creating 'DirectorEntry's for the parent directories of virtual
      files, such that we can tell whether two virtual files are from the
      same directory.  This is useful for injecting virtual files whose
      directories don't exist in the real file system.
      
      - minor clean-ups and adding comments for class
      FileManager::UniqueDirContainer and FileManager::UniqueFileContainer.
      
      - adding statistics on virtual files to FileManager::PrintStats().
      
      - adding unit tests to verify the existing and new behavior of FileManager.
      
      llvm-svn: 125384
      e1dd3e2c
  22. Feb 10, 2011
    • Douglas Gregor's avatar
      Implement two related optimizations that make de-serialization of · 09b6989e
      Douglas Gregor authored
      AST/PCH files more lazy:
        - Don't preload all of the file source-location entries when reading
        the AST file. Instead, load them lazily, when needed.
        - Only look up header-search information (whether a header was already
        #import'd, how many times it's been included, etc.) when it's needed
        by the preprocessor, rather than pre-populating it.
      
      Previously, we would pre-load all of the file source-location entries,
      which also populated the header-search information structure. This was
      a relatively minor performance issue, since we would end up stat()'ing
      all of the headers stored within a AST/PCH file when the AST/PCH file
      was loaded. In the normal PCH use case, the stat()s were cached, so
      the cost--of preloading ~860 source-location entries in the Cocoa.h
      case---was relatively low.
      
      However, the recent optimization that replaced stat+open with
      open+fstat turned this into a major problem, since the preloading of
      source-location entries would now end up opening those files. Worse,
      those files wouldn't be closed until the file manager was destroyed,
      so just opening a Cocoa.h PCH file would hold on to ~860 file
      descriptors, and it was easy to blow through the process's limit on
      the number of open file descriptors.
      
      By eliminating the preloading of these files, we neither open nor stat
      the headers stored in the PCH/AST file until they're actually needed
      for something. Concretely, we went from
      
      *** HeaderSearch Stats:
      835 files tracked.
        364 #import/#pragma once files.
        823 included exactly once.
        6 max times a file is included.
        3 #include/#include_next/#import.
          0 #includes skipped due to the multi-include optimization.
      1 framework lookups.
      0 subframework lookups.
      
      *** Source Manager Stats:
      835 files mapped, 3 mem buffers mapped.
      37460 SLocEntry's allocated, 11215575B of Sloc address space used.
      62 bytes of files mapped, 0 files with line #'s computed.
      
      with a trivial program that uses a chained PCH including a Cocoa PCH
      to
      
      *** HeaderSearch Stats:
      4 files tracked.
        1 #import/#pragma once files.
        3 included exactly once.
        2 max times a file is included.
        3 #include/#include_next/#import.
          0 #includes skipped due to the multi-include optimization.
      1 framework lookups.
      0 subframework lookups.
      
      *** Source Manager Stats:
      3 files mapped, 3 mem buffers mapped.
      37460 SLocEntry's allocated, 11215575B of Sloc address space used.
      62 bytes of files mapped, 0 files with line #'s computed.
      
      for the same program.
      
      llvm-svn: 125286
      09b6989e
  23. Feb 08, 2011
  24. Feb 05, 2011
    • Douglas Gregor's avatar
      Improve our uniquing of file entries when files are re-saved or are · 606c4ac3
      Douglas Gregor authored
      overridden via remapping. Thus, when we create a "virtual" file in the
      file manager, we still stat() the real file that lives behind it so
      that we can provide proper uniquing based on inodes. This helps keep
      the file manager much more consistent.
      
      To take advantage of this when reparsing files in libclang, we disable
      the use of the stat() cache when reparsing or performing code
      completion, since the stat() cache is very likely to be out of date in
      this use case.
      
      llvm-svn: 124971
      606c4ac3
  25. Feb 03, 2011
  26. Feb 02, 2011
    • Douglas Gregor's avatar
      Canonicalize path names in the file manager before performing a lookup · 3c0d263a
      Douglas Gregor authored
      on that name. Canonicalization eliminates silliness such as "." and
      "foo/.." that breaks the uniquing of files in the presence of virtual
      files or files whose inode numbers have changed during
      parsing/re-parsing. c-index-test isn't able to create this crazy
      situation, so I've resorted to testing outside of the Clang
      tree. Fixes <rdar://problem/8928220>.
      
      Note that this hackery will go away once we have a real virtual file
      system on which we can layer FileManager; the virtual-files hack is
      showing cracks.
      
      llvm-svn: 124754
      3c0d263a
  27. Jan 27, 2011
    • Axel Naumann's avatar
      TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with... · 63fbaeda
      Axel Naumann authored
      TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with invalid PresomedLoc, instead of just silencing it.
      
      FileManager.cpp: Allow virtual files in nonexistent directories.
      FileManager.cpp: Close FileDescriptor for virtual files that correspond to actual files.
      FileManager.cpp: Enable virtual files to be created even for files that were flagged as NON_EXISTENT_FILE, e.g. by a prior (unsuccessful) addFile().
      
      ASTReader.cpp: Read a PCH even if the original source files cannot be found.
      
      Add a test for reading a PCH of a file that has been removed and diagnostics referencing that file.
      
      llvm-svn: 124374
      63fbaeda
  28. Dec 21, 2010
  29. Dec 17, 2010
  30. Dec 16, 2010
  31. Dec 09, 2010
  32. Dec 02, 2010
  33. Nov 29, 2010
  34. Nov 23, 2010
Loading