Skip to content
  1. Sep 09, 2009
  2. May 28, 2009
    • Chris Lattner's avatar
      fix the "pasting formed 'a]', an invalid preprocessing token" · 7f4153db
      Chris Lattner authored
      diagnostic to include the full instantiation location for the
      invalid paste.  For:
      
      #define foo(a, b)  a ## b
      #define bar(x) foo(x, ])
      bar(a)
      bar(zdy)
      
      Instead of:
      
      t.c:3:22: error: pasting formed 'a]', an invalid preprocessing token
      #define foo(a, b)  a ## b
                           ^
      t.c:3:22: error: pasting formed 'zdy]', an invalid preprocessing token
      
      we now produce:
      
      t.c:7:1: error: pasting formed 'a]', an invalid preprocessing token
      bar(a)
      ^
      t.c:4:16: note: instantiated from:
      #define bar(x) foo(x, ])
                     ^
      t.c:3:22: note: instantiated from:
      #define foo(a, b)  a ## b
                           ^
      t.c:8:1: error: pasting formed 'zdy]', an invalid preprocessing token
      bar(zdy)
      ^
      t.c:4:16: note: instantiated from:
      #define bar(x) foo(x, ])
                     ^
      t.c:3:22: note: instantiated from:
      #define foo(a, b)  a ## b
                           ^
      
      llvm-svn: 72519
      7f4153db
    • Eli Friedman's avatar
      Make the bad paste diagnostic print the entire pasted token. · 54eb224c
      Eli Friedman authored
      llvm-svn: 72497
      54eb224c
  3. May 25, 2009
  4. May 24, 2009
  5. May 22, 2009
  6. May 03, 2009
  7. Apr 26, 2009
  8. Apr 19, 2009
  9. Mar 23, 2009
  10. Mar 18, 2009
  11. Mar 08, 2009
  12. Mar 04, 2009
  13. 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
  14. Jan 29, 2009
  15. Jan 27, 2009
  16. Jan 26, 2009
    • Chris Lattner's avatar
      remove my hacks that aggressively threw away multiple · 357b57d7
      Chris Lattner authored
      instantiation history in an effort to speed up c99-intconst-1.c.
      Now that multiple nested instantiations are allowed, we just
      make them and don't pay the cost of lookups.  With the other
      changes that went in before this, reverting this is actually
      a speedup for c99-intconst-1.c, speeding it up from 1.96s to 1.80s,
      and preserves much better loc info.
      
      llvm-svn: 63036
      357b57d7
    • 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
      Only resolve a macro's instantiation loc once per macro, instead of once · dd9babc7
      Chris Lattner authored
      per token lexed from it.  This speeds up clang on c99-intconst-1.c from
      the GCC testsuite from 3.64s to 2.66s (36%).  This reduces the number of
      binary search FileID lookups from 251570522 to 114175649 on this testcase.
      
      llvm-svn: 62992
      dd9babc7
    • 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
  17. Jan 23, 2009
    • Chris Lattner's avatar
      This is a follow-up to r62675: · 1f6c7fe6
      Chris Lattner authored
      Refactor how the preprocessor changes a token from being an tok::identifier to a 
      keyword (e.g. tok::kw_for).  Instead of doing this in HandleIdentifier, hoist this
      common case out into the caller, so that every keyword doesn't have to go through
      HandleIdentifier.  This drops time in HandleIdentifier from 1.25ms to .62ms, and
      speeds up clang -Eonly with PTH by about 1%.
      
      llvm-svn: 62855
      1f6c7fe6
  18. Jan 21, 2009
  19. Jan 19, 2009
  20. Jan 17, 2009
    • Chris Lattner's avatar
      make the verbose raw-lexer ctor fully explicit instead of having · fcf6452e
      Chris Lattner authored
      embedded magic.
      
      llvm-svn: 62417
      fcf6452e
    • 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
  21. Nov 18, 2008
  22. Oct 12, 2008
  23. Sep 29, 2008
  24. 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
  25. Mar 10, 2008
  26. Mar 09, 2008
  27. Feb 07, 2008
  28. Jan 29, 2008
  29. Dec 29, 2007
Loading