1. 53702cd add a helper method. by Chris Lattner · 17 years ago
  2. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  3. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  4. c3d8d57 Add dumping support for locations, make -dumptokens print out the location by Chris Lattner · 17 years ago
  5. 0750618 start partitioning the diagnostics into two classes: those by Chris Lattner · 17 years ago
  6. 016765e Support floating point literals of the form "1e-16f" which specify an exponent but no decimal point. by Christopher Lamb · 17 years ago
  7. 32e61bf Removed potential buffer overrun (spotted by Neil Booth) when NumericLiteralParser by Ted Kremenek · 17 years ago
  8. 427d5af Added optional pass-by-reference argument "isExact" to by Ted Kremenek · 17 years ago
  9. 0c3eb29 Fix PR1820, an incredibly subtle macro expansion bug that Neil discovered. by Chris Lattner · 17 years ago
  10. b283298 fix a bug Steve noticed, where a #import of the main file itself would fail. by Chris Lattner · 17 years ago
  11. 921e9ff Fix a bug handling hex floats in c90 mode, pointed out by Neil. by Chris Lattner · 17 years ago
  12. 39d0a27 by Steve Naroff · 17 years ago
  13. 8ee529b by Steve Naroff · 17 years ago
  14. 498856c by Steve Naroff · 17 years ago
  15. 9165ad3 by Steve Naroff · 17 years ago
  16. 09b266e by Steve Naroff · 17 years ago
  17. d65d8ee Avoid using macro expansions, which causes these to come out in -E mode. by Chris Lattner · 17 years ago
  18. c000609 by Steve Naroff · 17 years ago
  19. 7e15891 by Steve Naroff · 17 years ago
  20. 95c062b Silenced a couple of VC++ warnings. by Hartmut Kaiser · 17 years ago
  21. 9a61194 Move token length calculation out of the diagnostics machinery into by Chris Lattner · 17 years ago
  22. 168ae2d Add a new type of lexer: a raw lexer, which does not require a preprocessor by Chris Lattner · 17 years ago
  23. 3b8e891 by Steve Naroff · 17 years ago
  24. ee98ac5 Add support for Pascal strings. by Anders Carlsson · 17 years ago
  25. d19144b resolve a fixme, by moving __builtin_va_list to a more logical by Chris Lattner · 17 years ago
  26. f1af947 Add a dummy for the id typedef. Steve, plz fill this in. :) by Chris Lattner · 17 years ago
  27. 53b0dab Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  28. 22f6bbc Switch lexer/pp over to new Token::is/isNot api by Chris Lattner · 17 years ago
  29. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  30. dbf388b implement the Token class in the Lexer.cpp file instead of IdentifierInfo.cpp by Chris Lattner · 17 years ago
  31. cc1a875 improve layering: by Chris Lattner · 17 years ago
  32. 0edde55 change calls to getMacroInfo into hasMacroDefinition() where possible. by Chris Lattner · 17 years ago
  33. 9c46de4 add a hasMacroDefinition() method to IdentifierInfo, strength reduce a by Chris Lattner · 17 years ago
  34. 387b98d Remove the PPID bitfield from IdentifierInfo, shrinking it by a word by Chris Lattner · 17 years ago
  35. 4365a7e First step to fixing a long lived layering violation: this by Chris Lattner · 17 years ago
  36. ff38491 simplify the interfaces to create selectors: getSelector can take any by Chris Lattner · 17 years ago
  37. f836e3f simplify some Selector interfaces. by Chris Lattner · 17 years ago
  38. 8599426 Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of by Chris Lattner · 17 years ago
  39. 29238a0 by Steve Naroff · 17 years ago
  40. 5b6b72f by Steve Naroff · 17 years ago
  41. bcfb06a by Steve Naroff · 17 years ago
  42. 4cbcb89 by Steve Naroff · 17 years ago
  43. 68d331a by Steve Naroff · 17 years ago
  44. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  45. 1c9bdae work around bugs and missing features in apfloat. by Chris Lattner · 17 years ago
  46. 525a050 Use APFloat for the representation of FP immediates, ask the target by Chris Lattner · 17 years ago
  47. 21d5a95 by Steve Naroff · 17 years ago
  48. 3f128ad by Steve Naroff · 17 years ago
  49. 701e5eb Silence VC++ warnings, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  50. 77034d3 Add #include required on win32. by Chris Lattner · 17 years ago
  51. b812814 Eliminate some VC++ warnings, patch by Hartmut Kaiser! by Chris Lattner · 17 years ago
  52. 79859c3 Spaces not tabs. by Neil Booth · 17 years ago
  53. b944951 Ensure we diagnose long long literals in C90 mode. by Neil Booth · 17 years ago
  54. 6e400c2 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  55. 506b8de 1) refactor some code. by Chris Lattner · 17 years ago
  56. 861cf3e by Steve Naroff · 17 years ago
  57. b2024b2 Update to match the API from LLVM mainline. by Chris Lattner · 17 years ago
  58. d8e3083 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 17 years ago
  59. f11ccfc Fix a scoping bug that apple gcc doesn't catch for some reason. by Chris Lattner · 17 years ago
  60. 706ab50 implement a missing feature in the #include handler, where by Chris Lattner · 17 years ago
  61. f1c99ac refactor the interface to Preprocessor::GetIncludeFilenameSpelling, by Chris Lattner · 17 years ago
  62. 0f67032 fix a bug getting the spelling of an identifier token by Chris Lattner · 17 years ago
  63. 448cec4 Change hte lexer to start a start pointer to the underlying by Chris Lattner · 17 years ago
  64. 409a036 split the slow path out of Lexer::getSourceLocation and do not let the by Chris Lattner · 17 years ago
  65. 9960ae8 Implement a simple cache in headersearch. This speeds up by Chris Lattner · 17 years ago
  66. 8133cfc avoid recursion between SkipBCPLComment and SkipWhitespace. In cases like this: by Chris Lattner · 17 years ago
  67. 9c68306 Fix a really subtle bug in the macro expander caching code, where by Chris Lattner · 17 years ago
  68. 8146b68 Fix a lexer bug where we incorrectly rejected int i = /*/ */ 1; by Chris Lattner · 17 years ago
  69. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  70. 25bdb51 simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buffer*. by Chris Lattner · 17 years ago
  71. 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago
  72. 2b64fdc Fix a stringizing bug that Neil noticed. We should preprocess this: by Chris Lattner · 17 years ago
  73. 938867c Make sure to initialize an ivar, patch by Benoit Boissinot. by Chris Lattner · 17 years ago
  74. 0ea793e Correctly respect C99 5.1.1.2p4 when searching for the first '(' of by Chris Lattner · 17 years ago
  75. 67798cb strtod is more portable than strtof apparently. Instead of making this conditional, by Chris Lattner · 17 years ago
  76. 79cc005 cheap change to fix solaris compilation. I can make this a static inline if desired by Gabor Greif · 17 years ago
  77. 136f93a Make octal constant lexing use AdvanceToTokenCharacter to give more by Chris Lattner · 17 years ago
  78. 97ba77c Add a new Preprocessor::AdvanceToTokenCharacter method which, given a sloc by Chris Lattner · 17 years ago
  79. d4b80f1 Add support for C++'0x keywords, patch by Doug Gregor by Chris Lattner · 17 years ago
  80. dda75cf remove obsolete comment. by Chris Lattner · 17 years ago
  81. abca2bb Change SourceManager::getInstantiationLoc to take virtual locations, doing its by Chris Lattner · 17 years ago
  82. 9594acf Cache macro expander objects to avoid thrashing malloc in heavy expansion situations. by Chris Lattner · 17 years ago
  83. 25c9648 switch function-like macros from using a vector for their arguments to an by Chris Lattner · 17 years ago
  84. c215bd6 expose an iterator interface to getReplacementTokens instead of the datastructure itself. by Chris Lattner · 17 years ago
  85. b5e240f split function-like and object-like macro body parsing to make the by Chris Lattner · 17 years ago
  86. c35717a remove use of alloca. by Chris Lattner · 17 years ago
  87. 7ae5326 Solaris needs an included header for alloca by Gabor Greif · 17 years ago
  88. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago