Skip to content
  1. Sep 09, 2009
  2. Jan 29, 2009
  3. Jan 27, 2009
  4. Jan 17, 2009
    • Chris Lattner's avatar
      this massive patch introduces a simple new abstraction: it makes · d32480d3
      Chris Lattner authored
      "FileID" a concept that is now enforced by the compiler's type checker
      instead of yet-another-random-unsigned floating around.
      
      This is an important distinction from the "FileID" currently tracked by
      SourceLocation.  *That* FileID may refer to the start of a file or to a
      chunk within it.  The new FileID *only* refers to the file (and its 
      #include stack and eventually #line data), it cannot refer to a chunk.
      
      FileID is a completely opaque datatype to all clients, only SourceManager
      is allowed to poke and prod it.
      
      llvm-svn: 62407
      d32480d3
  5. Jan 16, 2009
  6. Nov 22, 2008
  7. Nov 20, 2008
  8. Nov 19, 2008
    • Ted Kremenek's avatar
      - Move static function IsNonPragmaNonMacroLexer into Preprocessor.h. · 45245217
      Ted Kremenek authored
      - Add variants of IsNonPragmaNonMacroLexer to accept an IncludeMacroStack entry
        (simplifies some uses).
      - Use IsNonPragmaNonMacroLexer in Preprocessor::LookupFile.
      - Add 'FileID' to PreprocessorLexer, and have Preprocessor query this fileid
        when looking up the FileEntry for a file
      
      Performance testing of -Eonly on Cocoa.h shows no performance regression because
      of this patch.
      
      llvm-svn: 59666
      45245217
  9. Nov 18, 2008
  10. Nov 13, 2008
  11. Nov 12, 2008
Loading