1. c0846d6 Make sure to initialize field. Hopefully this will fix some test failures on Windows. by Eli Friedman · 13 years ago
  2. 65030af Switch __import__ over to __import_module__, so we don't conflict with by Douglas Gregor · 13 years ago
  3. 6be16fe Take an entirely different approach to handling the "parsing" of by Douglas Gregor · 13 years ago
  4. 6aa52ec Introduce support for a simple module import declaration, which by Douglas Gregor · 13 years ago
  5. 6748509 Change Preprocessor::getTotalMemory() to use llvm::capacity_in_bytes(). by Ted Kremenek · 13 years ago
  6. 91d1bd6 Report more memory using in Preprocessor::getTotalMemory() and PreprocessingRecord::getTotalMemory(). by Ted Kremenek · 13 years ago
  7. bf340e4 Rename create(MacroArg)InstantiationLoc to create(MacroArg)ExpansionLoc. by Chandler Carruth · 13 years ago
  8. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  9. 9e5bb85 Move the rest of the preprocessor terminology from 'instantiate' and by Chandler Carruth · 13 years ago
  10. 5b3284a Introduce a caching mechanism for macro expanded tokens. by Argyrios Kyrtzidis · 13 years ago
  11. c5c5e92 Introduce Preprocessor::getTotalMemory() and use it in CIndex.cpp, no functionality change. by Argyrios Kyrtzidis · 13 years ago
  12. dca8ee8 Introduce a new libclang parsing flag, by Douglas Gregor · 13 years ago
  13. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  14. 834e3f6 Fix my earlier commit to work with escaped newlines and leave breadcrumbs by John McCall · 14 years ago
  15. 30900da Add an API call to retrieve the spelling data of a token from its SourceLocation. by John McCall · 14 years ago
  16. c4bf2b9 Introduced raw_identifier token kind. by Abramo Bagnara · 14 years ago
  17. 39b49bc now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 14 years ago
  18. b060727 move getSpelling from Preprocessor to Lexer, which it is more conceptually related to. by Chris Lattner · 14 years ago
  19. 7ef5c27 move AdvanceToTokenCharacter and getLocForEndOfToken from by Chris Lattner · 14 years ago
  20. 872a45e add a static version of PP::AdvanceToTokenCharacter. by Chris Lattner · 14 years ago
  21. 48cf982 add a static form of the efficient PP::getSpelling method. by Chris Lattner · 14 years ago
  22. 389db16 Implement -working-directory. by Argyrios Kyrtzidis · 14 years ago
  23. 9714a23 Really^2 fix <rdar://problem/8361834>, this time without crashing. by Ted Kremenek · 14 years ago
  24. 2a6b03a Simplify loop. No functionality change. by Ted Kremenek · 14 years ago
  25. af8fa25 Simplify lifetime management of MacroInfo objects in Preprocessor by having the Preprocessor maintain them in a linked by Ted Kremenek · 14 years ago
  26. e6a7dab In ~Preprocessor(), also cleanup the MacroInfo objects left-over from stray "#pragma push_macro" uses. This by Ted Kremenek · 14 years ago
  27. afbc681 Use getSpelling to get original text of the c++ operator token. (radar 8328250). by Fariborz Jahanian · 14 years ago
  28. be74740 Patch to allow alternative representation of c++ by Fariborz Jahanian · 14 years ago
  29. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  30. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  31. 043266b Tweak wording in an assertion, from dawn@burble.org. by Douglas Gregor · 14 years ago
  32. 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
  33. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  34. 2c1ab90 no need to pass bumppointer allocator into macroinfo::destroy by Chris Lattner · 14 years ago
  35. 476d8b8 Random temporary string cleanup. by Benjamin Kramer · 14 years ago
  36. f4f6c9d Introduce basic support for loading a precompiled preamble while by Douglas Gregor · 14 years ago
  37. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  38. 83c1a6f Fix memory leak in Preprocessor where MacroInfo objects in the MICache wouldn't have their by Ted Kremenek · 14 years ago
  39. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  40. a0a270c Match MemoryBuffer API changes. by Chris Lattner · 14 years ago
  41. dbd8209 PPCallbacks: Add hook for reaching the end of the main file, and fix DependencyFile to not do work in its destructor. by Daniel Dunbar · 15 years ago
  42. b9e1b75 Make the preprocessing record a PPCallbacks subclass itself, by Douglas Gregor · 15 years ago
  43. 94dc8f6 Optionally store a PreprocessingRecord in the preprocessor itself, and by Douglas Gregor · 15 years ago
  44. dbf8ee6 Entering the main source file in the preprocessor can fail if the by Douglas Gregor · 15 years ago
  45. a543016 Audit all callers of SourceManager::getCharacterData(); update some of by Douglas Gregor · 15 years ago
  46. aa38c3d Teach the one caller of SourceManager::getMemoryBufferForFile() to cope with errors by Douglas Gregor · 15 years ago
  47. 50f6af7 Introduce optional "Invalid" parameters to routines that invoke the by Douglas Gregor · 15 years ago
  48. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  49. 51f5fe3 Move method out-of-line. I thought this would be a candidate for inlining but I was wrong. by Benjamin Kramer · 15 years ago
  50. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 15 years ago
  51. c0178e9 Fix subtle bug in Preprocessor::AdvanceToTokenCharacter(): use '+=' instead of '='. by Ted Kremenek · 15 years ago
  52. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  53. 046c227 allow the HandlerComment callback to push tokens into the by Chris Lattner · 15 years ago
  54. 88a3586 Teach Preprocessor::macro_begin/macro_end to lazily load all macro by Douglas Gregor · 15 years ago
  55. ffd6e39 Avoid an unnecessary copy of Predefines. getMemBufferCopy does the null termination for us. by Benjamin Kramer · 15 years ago
  56. 23f77e5 set up the machinery for a MacroArgs cache hanging off Preprocessor. by Chris Lattner · 15 years ago
  57. 2b9d637 fix typo by Chris Lattner · 15 years ago
  58. b760fe8 Don't expand tabs when computing the offset from the code-completion column by Douglas Gregor · 15 years ago
  59. 63ceaa3 Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients should be forced to deal with error conditions. by Daniel Dunbar · 15 years ago
  60. 109ae73 Minor cleanup to the code-completion-point logic suggested by Chris. by Douglas Gregor · 15 years ago
  61. 2968442 Extend the source manager with the ability to override the contents of by Douglas Gregor · 15 years ago
  62. 0ff1042 Add static version of Preprocessor::getSpelling. by Daniel Dunbar · 15 years ago
  63. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  64. 5814e65 Allow Preprocessor to take ownership of the HeaderSearch object. I think it should probably always own the header search object, but I'm not sure... by Daniel Dunbar · 15 years ago
  65. c322209 Make LookUpIdentifierInfo const. This makes the Identifiers table mutable and is by Daniel Dunbar · 15 years ago
  66. 3da736c StringRefize Preprocessor::getIdentifierInfo. by Daniel Dunbar · 15 years ago
  67. 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
  68. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  69. 52e7108 Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 15 years ago
  70. b657f11 Replace the -code-completion-dump option with by Douglas Gregor · 15 years ago
  71. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  72. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  73. 6cb7c1a Replace cerr with errs(). by Benjamin Kramer · 15 years ago
  74. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  75. 030e8fe my refactoring of builtins changed target-specific builtins to only be by Chris Lattner · 15 years ago
  76. 2962f4d Emit keyword extension warning in all modes, not just C99 mode. by Eli Friedman · 15 years ago
  77. 88e2524 Change Preprocessor::AdvanceToTokenCharacter to stop at by Chris Lattner · 15 years ago
  78. 390c8ce fix typo by Chris Lattner · 15 years ago
  79. 2c78b87 Change Lexer::MeasureTokenLength to take a LangOptions reference. by Chris Lattner · 15 years ago
  80. c1f9d82 implement the microsoft/gnu "__COUNTER__" macro: rdar://4329310 by Chris Lattner · 15 years ago
  81. e1d918e Compare the predefines buffer in the PCH file with the predefines by Douglas Gregor · 15 years ago
  82. 531cc83 do a dance with predefines, and finally enable reading of macros from by Chris Lattner · 15 years ago
  83. 6bf0f4c move a bunch of code for initializing the predefines buffer out of Preprocessor.cpp by Chris Lattner · 15 years ago
  84. 14f7900 PCH serialization/deserialization of the source manager. With this by Douglas Gregor · 15 years ago
  85. 3bbc753 More fixes to builtin preprocessor defines. by Daniel Dunbar · 15 years ago
  86. 9fd0b1f Set __PIC__ (more) correctly. by Daniel Dunbar · 15 years ago
  87. 3a5cbd3 The __weak and __strong defines are common to all darwin targets by Chris Lattner · 15 years ago
  88. 4ca076f Define __OPTIMIZE__ and __OPTIMIZE_SIZE__ if the -O[12] and -Os flags are passed to the compiler. by Anders Carlsson · 15 years ago
  89. 47e60ac Put back __OBJC2__ definition. by Fariborz Jahanian · 15 years ago
  90. dbf15cb - Minor change to dump of ivar layout map. by Fariborz Jahanian · 15 years ago
  91. 3fec8ff change the __VERSION__ string to be more sensible. It would be useful to include the clang version # too. by Chris Lattner · 15 years ago
  92. f2e880a rename the <predefines> buffer to <built-in> to solve PR3849. by Chris Lattner · 16 years ago
  93. 3332864 pass LangOptions into TargetInfo::getTargetDefines, so that targets by Chris Lattner · 16 years ago
  94. 76b1c84 (Hopefully) instantiate dependent array types correctly. by Anders Carlsson · 16 years ago
  95. 836040f make Preprocessor::Diags be a pointer instead of a reference. by Chris Lattner · 16 years ago
  96. 8d4a9d3 fix PR3768, Clang does -D__STDC_HOSTED__=1, even if -ffreestanding is passed. by Chris Lattner · 16 years ago
  97. 2ace928 Fix warnings in build on clang-x86_64-freebsd buildbot. by Mike Stump · 16 years ago
  98. 3daed52 improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) by Chris Lattner · 16 years ago
  99. b2fb6de Clean up and document code modification hints. by Douglas Gregor · 16 years ago
  100. 685befe switch the macroinfo argument lists from being allocated off the heap by Chris Lattner · 16 years ago