Skip to content
  1. May 12, 2009
  2. Apr 20, 2009
  3. Apr 19, 2009
  4. Apr 14, 2009
  5. Mar 17, 2009
  6. Mar 08, 2009
  7. Feb 15, 2009
    • Chris Lattner's avatar
      track "just a little more" location information for macro instantiations. · 9dc9c206
      Chris Lattner authored
      Now instead of just tracking the expansion history, also track the full
      range of the macro that got replaced.  For object-like macros, this doesn't
      change anything.  For _Pragma and function-like macros, this means we track
      the locations of the ')'.
      
      This is required for PR3579 because apparently GCC uses the line of the ')'
      of a function-like macro as the location to expand __LINE__ to.
      
      llvm-svn: 64601
      9dc9c206
  8. Jan 29, 2009
  9. Jan 27, 2009
  10. 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
  11. Jan 19, 2009
  12. Jan 17, 2009
    • Chris Lattner's avatar
      Change the Lexer ctor used to lex _Pragma directives into a static factory · 757169b6
      Chris Lattner authored
      method.  This lets us clean up the interface and make it more obvious that
      this method is *really really* _Pragma specific.
      
      Note that _Pragma handling uglifies the Lexer in the critical path.  It would
      be very interesting to consider making _Pragma remapping be a new special
      lexer class of its own.
      
      llvm-svn: 62425
      757169b6
    • 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
  13. Jan 16, 2009
  14. Nov 20, 2008
  15. Nov 19, 2008
  16. Nov 18, 2008
  17. Oct 04, 2008
  18. Sep 26, 2008
  19. Aug 11, 2008
    • Daniel Dunbar's avatar
      More #include cleaning · 56fdb6ae
      Daniel Dunbar authored
       - Kill unnecessary #includes in .cpp files. This is an automatic
         sweep so some things removed are actually used, but happen to be
         included by a previous header. I tried to get rid of the obvious
         examples and this was the easiest way to trim the #includes in one
         fell swoop.
       - We now return to regularly scheduled development.
      
      llvm-svn: 54632
      56fdb6ae
  20. 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
  21. Dec 29, 2007
  22. Dec 19, 2007
  23. Oct 09, 2007
  24. Oct 07, 2007
  25. Jul 23, 2007
  26. Jul 20, 2007
  27. 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
  28. Apr 10, 2007
Loading