Skip to content
  1. Apr 08, 2010
  2. Apr 07, 2010
  3. Apr 06, 2010
  4. Apr 05, 2010
  5. Apr 01, 2010
  6. Mar 31, 2010
  7. Mar 30, 2010
  8. Mar 24, 2010
  9. Mar 23, 2010
  10. Mar 21, 2010
  11. Mar 20, 2010
  12. Mar 19, 2010
    • Douglas Gregor's avatar
      Remove the capture, serialization, and deserialization of comment · 9507d46d
      Douglas Gregor authored
      ranges as part of the ASTContext. This code is not and was never used,
      but contributes ~250k to the size of the Cocoa.h precompiled
      header.
      
      llvm-svn: 99007
      9507d46d
    • Douglas Gregor's avatar
      Implement serialization and lazy deserialization of the preprocessing · aae9224e
      Douglas Gregor authored
      record (which includes all macro instantiations and definitions). As
      with all lay deserialization, this introduces a new external source
      (here, an external preprocessing record source) that loads all of the
      preprocessed entities prior to iterating over the entities.
      
      The preprocessing record is an optional part of the precompiled header
      that is disabled by default (enabled with
      -detailed-preprocessing-record). When the preprocessor given to the
      PCH writer has a preprocessing record, that record is written into the
      PCH file. When the PCH reader is given a PCH file that contains a
      preprocessing record, it will be lazily loaded (which, effectively,
      implicitly adds -detailed-preprocessing-record). This is the first
      case where we have sections of the precompiled header that are
      added/removed based on a compilation flag, which is
      unfortunate. However, this data consumes ~550k in the PCH file for
      Cocoa.h (out of ~9.9MB), and there is a non-trivial cost to gathering
      this detailed preprocessing information, so it's too expensive to turn
      on by default. In the future, we should investigate a better encoding
      of this information.
      
      llvm-svn: 99002
      aae9224e
    • Daniel Dunbar's avatar
      clang -cc1: Kill off -empty-input only, and replace with -init-only which is an · 1c201fbf
      Daniel Dunbar authored
      actual action.
       - This is easier to use, and more reliable for timing the thing this was
         actually meant to be useful for.
      
      llvm-svn: 98978
      1c201fbf
    • Douglas Gregor's avatar
      Optionally store a PreprocessingRecord in the preprocessor itself, and · 7f6d60dc
      Douglas Gregor authored
      tie its creation to a CC1 flag -detailed-preprocessing-record.
      
      llvm-svn: 98963
      7f6d60dc
  13. Mar 18, 2010
  14. Mar 17, 2010
  15. Mar 16, 2010
Loading