1. 0301b3f require the MAcroInfo objects are explcitly destroyed. by Chris Lattner · 16 years ago
  2. 6dcf63e update comment. by Chris Lattner · 16 years ago
  3. 2197c96 Fix some issues handling sub-token locations that come from macro expansions. by Chris Lattner · 16 years ago
  4. 2639e4f define __OBJC2__ for objc's nonfragile abi. by Fariborz Jahanian · 16 years ago
  5. cfdff38 Add support for deprecated members of RecordDecls (e.g. struct fields). by Chris Lattner · 16 years ago
  6. e7fb484 track "just a little more" location information for macro instantiations. by Chris Lattner · 16 years ago
  7. 6ad474f Give TargetInfo a new IntPtrType to hold the intptr_t type for a target. by Chris Lattner · 16 years ago
  8. 05db427 Fix rdar://6562329, a static analyzer crash Ted noticed on by Chris Lattner · 16 years ago
  9. 337edcd PTH: Cache stat information for files in the PTH file. Hook up FileManager by Ted Kremenek · 16 years ago
  10. 03c9727 Export __INT8_TYPE__ / __INT16_TYPE__ / __INT32_TYPE__ / __INT64_TYPE__ by Chris Lattner · 16 years ago
  11. f668a71 -funsigned-char sets __CHAR_UNSIGNED__ by Chris Lattner · 16 years ago
  12. f73903a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
  13. 3c3b155 get __WCHAR_TYPE__ from the targetinfo hook by Chris Lattner · 16 years ago
  14. 2b5abf5 simplify and refactor a bunch of type definition code in Preprocessor by Chris Lattner · 16 years ago
  15. 86d85b8 remove some ad-hocery and use DefineTypeSize for more things. by Chris Lattner · 16 years ago
  16. 996fecc refactor some code into a DefineTypeSize function. by Chris Lattner · 16 years ago
  17. 659dc14 correct and generalize computation of __INTMAX_MAX__. by Chris Lattner · 16 years ago
  18. d427ad4 fix some differences between apple gcc and clang on darwin/x86-32. by Chris Lattner · 16 years ago
  19. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  20. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  21. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
  22. 277faca PTH: Use Token::setLiteralData() to directly store a pointer to cached spelling data in the PTH file. This removes a ton of code for looking up spellings using sourcelocations in the PTH file. This simplifies both PTH-generation and reading. by Ted Kremenek · 16 years ago
  23. 47246be This change refactors some of the low-level lexer interfaces a bit. by Chris Lattner · 16 years ago
  24. 863c486 This is a follow-up to r62675: by Chris Lattner · 16 years ago
  25. 6a170eb Add a bit to IdentifierInfo that acts as a simple predicate which by Chris Lattner · 16 years ago
  26. 9ee7d45 Run destructors of MacroInfo objects to free memory they allocate. This addresses <rdar://problem/6506035>. by Ted Kremenek · 16 years ago
  27. 28c90ad in Preprocessor::AdvanceToTokenCharacter, don't actually bother by Chris Lattner · 16 years ago
  28. 6b7b840 suck the call to "getSpellingLoc" that all clients do into by Chris Lattner · 16 years ago
  29. 2b2453a this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 16 years ago
  30. f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 16 years ago
  31. fff745e remove obsolete comment which happened to go over 80 cols. by Chris Lattner · 16 years ago
  32. 9938d07 remove an unneeded const_cast. by Chris Lattner · 16 years ago
  33. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  34. 72b1b15 IdentifierInfo: by Ted Kremenek · 16 years ago
  35. 2839660 PTH: by Ted Kremenek · 16 years ago
  36. f02f6f0 PTH: Fix remaining cases where the spelling cache in the PTH file was being missed when it shouldn't. This shaves another 7% off PTH time for -Eonly on Cocoa.h by Ted Kremenek · 16 years ago
  37. b70e3da PTH: by Ted Kremenek · 16 years ago
  38. e1dccae simplify Preprocessor::getSpelling now that identifiers carry around by Chris Lattner · 16 years ago
  39. 86bc6cf Add parser support for __forceinline, __w64, __ptr64. by Steve Naroff · 16 years ago
  40. 239f073 Add parser support for __cdecl, __stdcall, and __fastcall. by Steve Naroff · 16 years ago
  41. f59e17e Add explicit "fuzzy" parse support for Microsoft declspec. by Steve Naroff · 16 years ago
  42. 7e0fbb2 Don't define __STDC__ when compiling with -fms-extensions by Steve Naroff · 16 years ago
  43. 0ea7672 Preprocessor: Allocate MacroInfo objects using a BumpPtrAllocator instead using new/delete. This speeds up -Eonly on Cocoa.h using the regular lexer by 1.8% and the PTHLexer by 3%. by Ted Kremenek · 16 years ago
  44. c157145 Add LangOptions marker for assembler-with-cpp mode and use to define by Daniel Dunbar · 16 years ago
  45. adc4eeb Move the Preprocessor::Diag methods inline. This has the interesting by Chris Lattner · 16 years ago
  46. 9efe970 inline a method into its only two call sites. by Chris Lattner · 16 years ago
  47. 3cbfe2c Split the DiagnosticInfo class into two disjoint classes: by Chris Lattner · 16 years ago
  48. 1a53157 Move more cases of using 'CurLexer' to 'CurPPLexer'. by Ted Kremenek · 16 years ago
  49. fad03b2 Remove Preprocessor::CacheTokens boolean data member. The same functionality can be provided by using Preprocessor::isBacktrackEnabled(). by Argyrios Kyrtzidis · 16 years ago
  50. 4b71e3e Initialize CurPPLexer in Preprocessor's constructor. by Ted Kremenek · 16 years ago
  51. 204b2fe Remove the last of the old-style Preprocessor::Diag methods. by Chris Lattner · 16 years ago
  52. 3692b09 Convert the lexer and start converting the PP over to using canonical Diag methods. by Chris Lattner · 16 years ago
  53. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  54. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  55. 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
  56. 73608a8 Fixed build warning. No functionality change. by Sanjiv Gupta · 16 years ago
  57. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 16 years ago
  58. eb52b44 __CONSTANT_CFSTRINGS__ should be defined even in C mode, otherwise the CFSTR by Chris Lattner · 16 years ago
  59. 12f0926 move __FLT_EVAL_METHOD__, __FLT_RADIX__, and __DECIMAL_DIG__ into by Chris Lattner · 16 years ago
  60. e9863ca suck the rest of the FP macros out of the targets into the PP by Chris Lattner · 16 years ago
  61. 2db78dd start moving fp macros over by Chris Lattner · 16 years ago
  62. 0e5d4ef move a bunch more integer sizing out of target-specific code into by Chris Lattner · 16 years ago
  63. 9b53316 eliminate __USER_LABEL_PREFIX__ from the Targets.cpp file, start moving by Chris Lattner · 16 years ago
  64. 2b43ad9 gcc no longer defines __block to nothing when blocks aren't enabled. by Chris Lattner · 16 years ago
  65. 62213d9 rearrange preprocessor macro definitions into language-specific by Chris Lattner · 16 years ago
  66. 3fdf467 Implement PR2773, support for __USER_LABEL_PREFIX__ by Chris Lattner · 16 years ago
  67. 048dd94 define __PASCAL_STRINGS__ whenever -fpascal-strings is enabled. by Chris Lattner · 16 years ago
  68. 71af229 __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ is a darwin-specific #define by Chris Lattner · 16 years ago
  69. 7218183 Fix the rest of rdar://6243860 hopefully. This requires changing FileIDInfo by Chris Lattner · 16 years ago
  70. 38a67c9 Update clang to pretend to be gcc-4.2. by Daniel Dunbar · 16 years ago
  71. dca6d6e Fix <rdar://problem/6240065> clang: __BLOCKS__ should be defined. by Steve Naroff · 16 years ago
  72. b4eaf9c - Implement __block. by Steve Naroff · 16 years ago
  73. c9a4eea Pull code from last commit. will put back soon. by Steve Naroff · 16 years ago
  74. 042f955 Implement block pseudo-storage class modifiers (__block, __byref). by Steve Naroff · 16 years ago
  75. 2174a4f Add a safety check. by Argyrios Kyrtzidis · 16 years ago
  76. fba5cb1 Move some ObjC preprocessor definitions into by Daniel Dunbar · 16 years ago
  77. de9d55a remove obsolete comment. by Chris Lattner · 16 years ago
  78. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  79. 03db1b3 Allow the preprocessor to cache the lexed tokens, so that we can do efficient lookahead and backtracking. by Argyrios Kyrtzidis · 16 years ago
  80. 109949a Patch by by Ted Kremenek · 16 years ago
  81. 551d5e9 move the linux predefined macro definition to the TargetInfo, where it really belongs by Nuno Lopes · 16 years ago
  82. e8825aa predefine the macro linux when compiled on a linux system. this fixes the build of libtidy by Nuno Lopes · 16 years ago
  83. d86522a clang uses the llvm backend, so define __llvm__ like llvm-gcc. by Chris Lattner · 16 years ago
  84. 73b17cd Fix rewriter bug <rdar://problem/5929344> clang ObjC rewriter: "extern int __CFConstantStringClassReference[];" should be extern "C". by Steve Naroff · 16 years ago
  85. 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
  86. 8ed3044 Neil pointed out that clang doesn't generate ranges from diagnostics by Chris Lattner · 16 years ago
  87. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 16 years ago
  88. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 16 years ago
  89. ec6c574 Added "PreprocessorFactory", an interface for lazily creating Preprocessor objects on-demand. by Ted Kremenek · 16 years ago
  90. f90a248 move #include to the file that needs it. by Chris Lattner · 17 years ago
  91. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Lex/Preprocessor.cpp]
  92. eb50ed8 Make the preprocessor own its PPCallbacks, fixing a memory leak. by Chris Lattner · 17 years ago
  93. 8c32b1a Move a bunch more code out of Preprocessor.cpp into PPLexerChange.cpp by Chris Lattner · 17 years ago
  94. a3b605e split macro expansion support out of Preprocessor.cpp into PPMacroExpansion.cpp by Chris Lattner · 17 years ago
  95. fde2bf9 rename HandleEndOfMacro -> HandleEndOfTokenLexer by Chris Lattner · 17 years ago
  96. e5c8ffe split the MacroArgs class out of TokenLexer.cpp/h into MacroArgs.cpp/h by Chris Lattner · 17 years ago
  97. 6cfe759 rename some MacroExpander-related ivars to TokenLexer. by Chris Lattner · 17 years ago
  98. 1543e9c rename the MacroExpander class to TokenLexer. It handles both by Chris Lattner · 17 years ago
  99. 141e71f split preprocesor directive handling out of Preprocessor.cpp into Directives.cpp by Chris Lattner · 17 years ago
  100. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago