1. 3cbfe2c Split the DiagnosticInfo class into two disjoint classes: by Chris Lattner · 16 years ago
  2. 1a53157 Move more cases of using 'CurLexer' to 'CurPPLexer'. by Ted Kremenek · 16 years ago
  3. fad03b2 Remove Preprocessor::CacheTokens boolean data member. The same functionality can be provided by using Preprocessor::isBacktrackEnabled(). by Argyrios Kyrtzidis · 16 years ago
  4. 4b71e3e Initialize CurPPLexer in Preprocessor's constructor. by Ted Kremenek · 16 years ago
  5. 204b2fe Remove the last of the old-style Preprocessor::Diag methods. by Chris Lattner · 16 years ago
  6. 3692b09 Convert the lexer and start converting the PP over to using canonical Diag methods. by Chris Lattner · 16 years ago
  7. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  8. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  9. caaa7df Using llvm::OwningPtr<> for CurLexer and CurTokenLexer. This makes both the ownership semantics of these objects explicit within the Preprocessor and also tightens up the code (explicit deletes not needed). by Ted Kremenek · 16 years ago
  10. 73608a8 Fixed build warning. No functionality change. by Sanjiv Gupta · 16 years ago
  11. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 16 years ago
  12. eb52b44 __CONSTANT_CFSTRINGS__ should be defined even in C mode, otherwise the CFSTR by Chris Lattner · 16 years ago
  13. 12f0926 move __FLT_EVAL_METHOD__, __FLT_RADIX__, and __DECIMAL_DIG__ into by Chris Lattner · 16 years ago
  14. e9863ca suck the rest of the FP macros out of the targets into the PP by Chris Lattner · 16 years ago
  15. 2db78dd start moving fp macros over by Chris Lattner · 16 years ago
  16. 0e5d4ef move a bunch more integer sizing out of target-specific code into by Chris Lattner · 16 years ago
  17. 9b53316 eliminate __USER_LABEL_PREFIX__ from the Targets.cpp file, start moving by Chris Lattner · 16 years ago
  18. 2b43ad9 gcc no longer defines __block to nothing when blocks aren't enabled. by Chris Lattner · 16 years ago
  19. 62213d9 rearrange preprocessor macro definitions into language-specific by Chris Lattner · 16 years ago
  20. 3fdf467 Implement PR2773, support for __USER_LABEL_PREFIX__ by Chris Lattner · 16 years ago
  21. 048dd94 define __PASCAL_STRINGS__ whenever -fpascal-strings is enabled. by Chris Lattner · 16 years ago
  22. 71af229 __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ is a darwin-specific #define by Chris Lattner · 16 years ago
  23. 7218183 Fix the rest of rdar://6243860 hopefully. This requires changing FileIDInfo by Chris Lattner · 16 years ago
  24. 38a67c9 Update clang to pretend to be gcc-4.2. by Daniel Dunbar · 16 years ago
  25. dca6d6e Fix <rdar://problem/6240065> clang: __BLOCKS__ should be defined. by Steve Naroff · 16 years ago
  26. b4eaf9c - Implement __block. by Steve Naroff · 16 years ago
  27. c9a4eea Pull code from last commit. will put back soon. by Steve Naroff · 16 years ago
  28. 042f955 Implement block pseudo-storage class modifiers (__block, __byref). by Steve Naroff · 16 years ago
  29. 2174a4f Add a safety check. by Argyrios Kyrtzidis · 16 years ago
  30. fba5cb1 Move some ObjC preprocessor definitions into by Daniel Dunbar · 16 years ago
  31. de9d55a remove obsolete comment. by Chris Lattner · 16 years ago
  32. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  33. 03db1b3 Allow the preprocessor to cache the lexed tokens, so that we can do efficient lookahead and backtracking. by Argyrios Kyrtzidis · 16 years ago
  34. 109949a Patch by by Ted Kremenek · 16 years ago
  35. 551d5e9 move the linux predefined macro definition to the TargetInfo, where it really belongs by Nuno Lopes · 16 years ago
  36. e8825aa predefine the macro linux when compiled on a linux system. this fixes the build of libtidy by Nuno Lopes · 16 years ago
  37. d86522a clang uses the llvm backend, so define __llvm__ like llvm-gcc. by Chris Lattner · 16 years ago
  38. 73b17cd Fix rewriter bug <rdar://problem/5929344> clang ObjC rewriter: "extern int __CFConstantStringClassReference[];" should be extern "C". by Steve Naroff · 16 years ago
  39. 0c7e805 DO NOT pre-defined __OBJC2__. The __OBJC2__ macro should only be defined when targeting the new, Apple 2.0 *runtime ABI*. It is not intended to be used to #ifdef ObjC 2.0 langauge features. This is unfortunate (given it's name). In a perfect world, this defined would be named __OBJC2_RUNTIME_ABI__. Oh well. by Steve Naroff · 16 years ago
  40. 8ed3044 Neil pointed out that clang doesn't generate ranges from diagnostics by Chris Lattner · 16 years ago
  41. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 16 years ago
  42. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 16 years ago
  43. ec6c574 Added "PreprocessorFactory", an interface for lazily creating Preprocessor objects on-demand. by Ted Kremenek · 16 years ago
  44. f90a248 move #include to the file that needs it. by Chris Lattner · 16 years ago
  45. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Lex/Preprocessor.cpp]
  46. eb50ed8 Make the preprocessor own its PPCallbacks, fixing a memory leak. by Chris Lattner · 16 years ago
  47. 8c32b1a Move a bunch more code out of Preprocessor.cpp into PPLexerChange.cpp by Chris Lattner · 16 years ago
  48. a3b605e split macro expansion support out of Preprocessor.cpp into PPMacroExpansion.cpp by Chris Lattner · 16 years ago
  49. fde2bf9 rename HandleEndOfMacro -> HandleEndOfTokenLexer by Chris Lattner · 16 years ago
  50. e5c8ffe split the MacroArgs class out of TokenLexer.cpp/h into MacroArgs.cpp/h by Chris Lattner · 16 years ago
  51. 6cfe759 rename some MacroExpander-related ivars to TokenLexer. by Chris Lattner · 16 years ago
  52. 1543e9c rename the MacroExpander class to TokenLexer. It handles both by Chris Lattner · 16 years ago
  53. 141e71f split preprocesor directive handling out of Preprocessor.cpp into Directives.cpp by Chris Lattner · 16 years ago
  54. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 16 years ago
  55. 2083a91 Revert an incorrect part of my previuos patch. by Lauro Ramos Venancio · 16 years ago
  56. 0184cc7 Fix PR2086. by Lauro Ramos Venancio · 16 years ago
  57. e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 16 years ago
  58. 705b5b5 by Steve Naroff · 16 years ago
  59. 9880ba9 long is 32-bit is on win32. by Chris Lattner · 16 years ago
  60. b746ce8 by Steve Naroff · 16 years ago
  61. 419154d by Steve Naroff · 16 years ago
  62. 3f1cc83 Implement support for the extremely atrocious MS /##/ extension, by Chris Lattner · 16 years ago
  63. d62701b by Steve Naroff · 16 years ago
  64. 9415a0c Fix PR1969. stdin has no FileEntry. by Chris Lattner · 16 years ago
  65. 09cf90f Change the location we return for the EOF token to actually be on the last by Chris Lattner · 17 years ago
  66. c21d9e4 Fix PR1936, a crash on malformed #if. Thanks to Neil for noticing this! by Chris Lattner · 17 years ago
  67. bdd30c2 Change uses of std::cerr/std::cout to llvm::Lcerr/llvm::cout, and remove by Ted Kremenek · 17 years ago
  68. 4d73046 Fix a nasty corner case that Neil noticed in PR1900, where we would by Chris Lattner · 17 years ago
  69. 6b61602 Fix typo by Nate Begeman · 17 years ago
  70. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  71. 95041a2 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  72. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  73. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  74. c3d8d57 Add dumping support for locations, make -dumptokens print out the location by Chris Lattner · 17 years ago
  75. 0c3eb29 Fix PR1820, an incredibly subtle macro expansion bug that Neil discovered. by Chris Lattner · 17 years ago
  76. b283298 fix a bug Steve noticed, where a #import of the main file itself would fail. by Chris Lattner · 17 years ago
  77. 39d0a27 by Steve Naroff · 17 years ago
  78. 8ee529b by Steve Naroff · 17 years ago
  79. 498856c by Steve Naroff · 17 years ago
  80. 9165ad3 by Steve Naroff · 17 years ago
  81. 09b266e by Steve Naroff · 17 years ago
  82. d65d8ee Avoid using macro expansions, which causes these to come out in -E mode. by Chris Lattner · 17 years ago
  83. c000609 by Steve Naroff · 17 years ago
  84. 7e15891 by Steve Naroff · 17 years ago
  85. 3b8e891 by Steve Naroff · 17 years ago
  86. d19144b resolve a fixme, by moving __builtin_va_list to a more logical by Chris Lattner · 17 years ago
  87. f1af947 Add a dummy for the id typedef. Steve, plz fill this in. :) by Chris Lattner · 17 years ago
  88. 53b0dab Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  89. 22f6bbc Switch lexer/pp over to new Token::is/isNot api by Chris Lattner · 17 years ago
  90. cc1a875 improve layering: by Chris Lattner · 17 years ago
  91. 0edde55 change calls to getMacroInfo into hasMacroDefinition() where possible. by Chris Lattner · 17 years ago
  92. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  93. 77034d3 Add #include required on win32. by Chris Lattner · 17 years ago
  94. f11ccfc Fix a scoping bug that apple gcc doesn't catch for some reason. by Chris Lattner · 17 years ago
  95. 706ab50 implement a missing feature in the #include handler, where by Chris Lattner · 17 years ago
  96. f1c99ac refactor the interface to Preprocessor::GetIncludeFilenameSpelling, by Chris Lattner · 17 years ago
  97. 0f67032 fix a bug getting the spelling of an identifier token by Chris Lattner · 17 years ago
  98. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  99. 25bdb51 simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buffer*. by Chris Lattner · 17 years ago
  100. 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago