Skip to content
  1. Sep 09, 2009
  2. Mar 08, 2009
  3. Jan 26, 2009
    • Chris Lattner's avatar
      This change refactors some of the low-level lexer interfaces a bit. · 5a7971e0
      Chris Lattner authored
      Token now has a class of kinds for "literals", which include 
      numeric constants, strings, etc.  These tokens can optionally have
      a pointer to the start of the token in the lexer buffer.  This 
      makes it faster to get spelling and do other gymnastics, because we
      don't have to go through source locations.
      
      This change is performance neutral, but will make other changes
      more feasible down the road.
      
      llvm-svn: 63028
      5a7971e0
    • Chris Lattner's avatar
      Check in the long promised SourceLocation rewrite. This lays the · 4fa23625
      Chris Lattner authored
      ground work for implementing #line, and fixes the "out of macro ID's" 
      problem.
      
      There is nothing particularly tricky about the code, other than the
      very performance sensitive SourceManager::getFileID() method.
      
      llvm-svn: 62978
      4fa23625
  4. Jan 19, 2009
  5. 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
  6. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  7. Mar 10, 2008
  8. Dec 29, 2007
  9. Jul 20, 2007
    • Chris Lattner's avatar
      Reimplement SourceLocation. Instead of having a · dc5c055f
      Chris Lattner authored
      fileid/offset pair, it now contains a bit discriminating between
      mapped locations and file locations.  This separates the tables for
      macros and files in SourceManager, and allows better separation of
      concepts in the rest of the compiler.  This allows us to have *many*
      macro instantiations before running out of 'addressing space'.
      
      This is also more efficient, because testing whether something is a
      macro expansion is now a bit test instead of a table lookup (which
      also used to require having a srcmgr around, now it doesn't).
      
      This is fully functional, but there are several refinements and
      optimizations left.
      
      llvm-svn: 40103
      dc5c055f
  10. Jun 16, 2007
    • Chris Lattner's avatar
      Finally bite the bullet and make the major change: split the clang namespace · 23b7eb67
      Chris Lattner authored
      out of the llvm namespace.  This makes the clang namespace be a sibling of
      llvm instead of being a child.
      
      The good thing about this is that it makes many things unambiguous.  The
      bad things is that many things in the llvm namespace (notably data structures
      like smallvector) now require an llvm:: qualifier.  IMO, libsystem and libsupport
      should be split out of llvm into their own namespace in the future, which will fix
      this issue.
      
      llvm-svn: 39659
      23b7eb67
  11. Apr 29, 2007
  12. Jun 30, 2006
  13. Jun 29, 2006
  14. Jun 28, 2006
Loading