1. 4c92b43 Make output files binary mode for -emit-llvm-bc by Christopher Lamb · 17 years ago
  2. 396f9fe Almost the best possible handling of stdin/stdout for llvm-emit-bc! by Christopher Lamb · 17 years ago
  3. 8bd848f Better handing of stdin/stdout for -emit-llvm-bc by Christopher Lamb · 17 years ago
  4. 2d6c065 Allow bitcode output to be redirected to stdout. by Christopher Lamb · 17 years ago
  5. fe947ad Implement -emit-llvm-bc option by Seo Sanghyeon · 17 years ago
  6. eb44eee remove use of alloca. by Chris Lattner · 17 years ago
  7. d0fa109 Unbreak mingw build by Anton Korobeynikov · 17 years ago
  8. cf6e41b Directory restructing of Analysis files. by Ted Kremenek · 17 years ago
  9. ee53364 Converted uses of scoped_ptr to OwningPtr. by Ted Kremenek · 17 years ago
  10. 5411772 Created initial implementation of "BuildSerializer", and ASTConsumer by Ted Kremenek · 17 years ago
  11. f06c928 Split serialization ASTConsumers into two consumers: SingleFileSerializer and by Ted Kremenek · 17 years ago
  12. 1036b68 Added methods createMainFileID() and createMainFileIDForMemBuffer() to by Ted Kremenek · 17 years ago
  13. 95041a2 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  14. 7dcc968 Typo fix. by Ted Kremenek · 17 years ago
  15. 76edd0e Added storage of the FileID of the the main source file of a translation unit by Ted Kremenek · 17 years ago
  16. fdfc198 Removed "SourceFile" from TranslationUnit. This same information will (soon) by Ted Kremenek · 17 years ago
  17. 50b5641 Cleaned up "-o" option to print "-o=<path>" instead of "-o=<string>" when by Ted Kremenek · 17 years ago
  18. ccc7647 Added "-o" option to driver. ASTConsumers will need to be gradually by Ted Kremenek · 17 years ago
  19. 63ea863 Removed storing inode and device number in TranslationUnit. by Ted Kremenek · 17 years ago
  20. 23ae091 by Steve Naroff · 17 years ago
  21. 3910c7c Moved generation of the name of the serialized AST file into by Ted Kremenek · 17 years ago
  22. 5ca4020 by Steve Naroff · 17 years ago
  23. dca2927 Moved ReadBitcodeFile and EmitBitcodeFile out of TranslationUnit and made them by Ted Kremenek · 17 years ago
  24. 525fdbc Fixed broken includes introduced by recent (incomplete) patch to by Ted Kremenek · 17 years ago
  25. 77cda50 Moved TranslationUnit from Driver to AST library. by Ted Kremenek · 17 years ago
  26. d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  27. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  28. 1bfd4a6 Start reading the headermap header, drop the 'errorstr' argument to by Chris Lattner · 17 years ago
  29. c6e2c2a Also fixed similar regression for class methods, as well as more indentations. by Fariborz Jahanian · 17 years ago
  30. 3af66a9 Sink getName into DirectoryLookup to simplify the client in clang. by Chris Lattner · 17 years ago
  31. fc591ac Fixed a regression caused by refactoring of some meta-data generation routines using iteratgors. by Fariborz Jahanian · 17 years ago
  32. 7c1d3df Fixed 80 col violation. by Ted Kremenek · 17 years ago
  33. 73da590 Added driver option -Wno-format-nonliteral to silence format string related by Ted Kremenek · 17 years ago
  34. 0048b51 Unbreak -v with framework paths. Patch by Shantonu Sen. by Chris Lattner · 17 years ago
  35. df77233 as it turns out, frameworks and headermaps are orthogonal. Make this so in by Chris Lattner · 17 years ago
  36. 60e4e2b add a portability fixme. by Chris Lattner · 17 years ago
  37. b94c707 teach RemoveDuplicates about header maps. by Chris Lattner · 17 years ago
  38. 822da61 Step #1 in adding headermap support to clang. by Chris Lattner · 17 years ago
  39. d665527 rearrange some code and make it more efficient. by Chris Lattner · 17 years ago
  40. 8f3dab8 swtich to smallptrset, which is more efficient than std::set. by Chris Lattner · 17 years ago
  41. 80e1715 make clang -v output more similar to gcc's -v output. by Chris Lattner · 17 years ago
  42. dee7359 simplify the interfaces to ProcessInputFile and InitializePreprocessor by Chris Lattner · 17 years ago
  43. 58dbdeb by Steve Naroff · 17 years ago
  44. fe4e015 Add check in the driver to see if a serialized AST file has been successfully by Ted Kremenek · 17 years ago
  45. cc92709 Changed set of top-level decls from a list to a vector. by Ted Kremenek · 17 years ago
  46. 3821d40 Changed -serialize-ast to not create a temporary directory, but instead by Ted Kremenek · 17 years ago
  47. 0404cd8 Set target data layout info in module. by Chris Lattner · 17 years ago
  48. a1fa3a1 Implemented -serialize-ast option for the driver. This is not really tested by Ted Kremenek · 17 years ago
  49. 20e9748 Implemented prototype mode where the driver can operate on serialized ASTs by Ted Kremenek · 17 years ago
  50. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  51. bbced58 Moved construction of TargetInfo objects out of the Driver by Ted Kremenek · 17 years ago
  52. be6df08 more cleanups changing things like getInstanceVariables to iterators. by Chris Lattner · 17 years ago
  53. ab4c4d5 resolve some fixmes and clean up some code by eliminating the get*Vars apis to some classes and use iterators instead. by Chris Lattner · 17 years ago
  54. 6590d21 Simplify some code, don't force the triple to a darwin triple if non-darwin. by Chris Lattner · 17 years ago
  55. 31e703b Moved creation of SourceManager, HeaderSearch, TargetInfo, and LangOptions by Ted Kremenek · 17 years ago
  56. 291e04b 80-column please. by Fariborz Jahanian · 17 years ago
  57. 2eefd86 Modified the internals of Diagnostic and DiagnosticClient to use by Ted Kremenek · 17 years ago
  58. 61477f7 Implemented rewriting of protocol-qualified global variable types. by Fariborz Jahanian · 17 years ago
  59. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  60. e66894c Refactor Rewritetest::RewriteObjcQualifiedInterfaceTypes in preparation for more by Fariborz Jahanian · 17 years ago
  61. fb344d3 properly namespacify. by Chris Lattner · 17 years ago
  62. 564f1de Move target specific builtin IDs to TargetBuiltins.h so that they can be used by CGBuiltin.cpp by Anders Carlsson · 17 years ago
  63. 5f18032 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 17 years ago
  64. 5c0887c Fix a pretty big but subtle bug counting the number of newlines to emit. by Chris Lattner · 17 years ago
  65. b3de9e7 avoid ///usr/include/foo.h, patch by Sean Middleditch by Chris Lattner · 17 years ago
  66. 44fe49c Add getTargetPrefix to TargetInfo, to be used with target specific intrinsics. by Anders Carlsson · 17 years ago
  67. 75ae776 by Steve Naroff · 17 years ago
  68. 7dd8283 Implemented when static typing is combined with protocols and use as receiver by Fariborz Jahanian · 17 years ago
  69. 36ee2cb Patch for rewriting of @protocol. by Fariborz Jahanian · 17 years ago
  70. 9bcb5fc by Steve Naroff · 17 years ago
  71. d0ee6f9 On Steve's suggestion, moved handling of use of undeclared method in a message by Fariborz Jahanian · 17 years ago
  72. 8904f15 Subdivided the function InitializeBaseLanguage into InitializeBaseLanguage, by Ted Kremenek · 17 years ago
  73. 4f03783 Avoid passing Diags into InitializeIncludePaths. by Chris Lattner · 17 years ago
  74. 3553766 Converted SerializationTest (--test-pickling) to use the new TranslationUnit by Ted Kremenek · 17 years ago
  75. b26d713 by Steve Naroff · 17 years ago
  76. 2f74359 Added "TranslationUnit" class that will be used to provide an interface by Ted Kremenek · 17 years ago
  77. acc9f33 Modified: CreateTargetInfo(). Now takes Diagnostic* instead of Diagnostic&. by Ted Kremenek · 17 years ago
  78. 82817ba I'm apparently the only sad lonely ppc user left :) by Chris Lattner · 17 years ago
  79. db094a2 Moved creation of ASTConsumers that can operate on both freshly-parsed and by Ted Kremenek · 17 years ago
  80. 7127431 Changed type-cast of "struct objc_super"'s 2nd initializer to match definition of by Fariborz Jahanian · 17 years ago
  81. dca2466 Added serialization support of SourceManager to the clang driver. by Ted Kremenek · 17 years ago
  82. 3cadd03 by Steve Naroff · 17 years ago
  83. ceee3e8 Type-cast initializers for "struct objc_super" parameter to avoid warning. by Fariborz Jahanian · 17 years ago
  84. a70711b Don't assert if objc.h not declared when rewriting. by Fariborz Jahanian · 17 years ago
  85. 04b3824 Removed a "TODO" comment as objc1 runtime does not need to do the "TODO". by Fariborz Jahanian · 17 years ago
  86. 8448d38 Removed searching for "darwin" keyword in target triple. We don't really support by Ted Kremenek · 17 years ago
  87. 05ca599 Fixed order of operands to strstr call. by Ted Kremenek · 17 years ago
  88. aead472 For target processing, on non-Darwin systems instead of using the host triple, by Ted Kremenek · 17 years ago
  89. 2c1e9c7 Change <Objc/objc.h> to <objc/objc.h> by Fariborz Jahanian · 17 years ago
  90. c4ca288 Implemented serialization of TargetInfo. by Ted Kremenek · 17 years ago
  91. 87ce5d1 Fixed a bug exposed by referencing an ivar field using component reference syntax. by Fariborz Jahanian · 17 years ago
  92. 9b4ebc2 Few cleanups to patch 44551: by Ted Kremenek · 17 years ago
  93. ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 17 years ago
  94. 0d6ca11 Fix an ast-print/ast-dump bug. by Chris Lattner · 17 years ago
  95. acb4977 Support for rewriteing of messaging of methods which return float. by Fariborz Jahanian · 17 years ago
  96. 80a6a5a Added support for messagings which return a structure-value. by Fariborz Jahanian · 17 years ago
  97. fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
  98. 26de465 fix a crash when the rewriter would scan off the beginning of the file. by Chris Lattner · 17 years ago
  99. 182745a add support for custom client-specific diagnostics. As a testcase, make the by Chris Lattner · 17 years ago
  100. 0750618 start partitioning the diagnostics into two classes: those by Chris Lattner · 17 years ago