1. 7acda7c introduce a new CodeGenModule::getIntrinsic method, which wraps by Chris Lattner · 17 years ago
  2. 8d54bf2 by Steve Naroff · 17 years ago
  3. c293725 Fixed a comment describing a function by Fariborz Jahanian · 17 years ago
  4. 5fb125c implement HeaderMap::LookupFile. I think headermaps are done now. All that is by Chris Lattner · 17 years ago
  5. 1adbf63 implement enough helper functions to successfully dump out the by Chris Lattner · 17 years ago
  6. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  7. 2f6974a Targets.cpp is gone. by Chris Lattner · 17 years ago
  8. 55352a2 Make the insertion point with an explicit new instead of the builder. by Chris Lattner · 17 years ago
  9. 7e3a89d Removed CFG.cpp's dependence on #including iostream. by Ted Kremenek · 17 years ago
  10. 4a33646 Modified format-string checking to not emit a warning when all of the by Ted Kremenek · 17 years ago
  11. ba83265 simplify some code, using new scoped_ptr support. Fix a bug in the by Chris Lattner · 17 years ago
  12. 9875131 Finish hooking up the scaffolding for headermaps. They can now do everything by Chris Lattner · 17 years ago
  13. 9796915 Format string checker: asprintf does not pass argumnents via va_list. by Ted Kremenek · 17 years ago
  14. 1bfd4a6 Start reading the headermap header, drop the 'errorstr' argument to by Chris Lattner · 17 years ago
  15. c6e2c2a Also fixed similar regression for class methods, as well as more indentations. by Fariborz Jahanian · 17 years ago
  16. 3af66a9 Sink getName into DirectoryLookup to simplify the client in clang. by Chris Lattner · 17 years ago
  17. fc591ac Fixed a regression caused by refactoring of some meta-data generation routines using iteratgors. by Fariborz Jahanian · 17 years ago
  18. 7c1d3df Fixed 80 col violation. by Ted Kremenek · 17 years ago
  19. 73da590 Added driver option -Wno-format-nonliteral to silence format string related by Ted Kremenek · 17 years ago
  20. 0048b51 Unbreak -v with framework paths. Patch by Shantonu Sen. by Chris Lattner · 17 years ago
  21. 060e470 Fixed another case where sizeof() returns the size in bytes, not bits. by Ted Kremenek · 17 years ago
  22. 0f441ab add headermap.cpp by Chris Lattner · 17 years ago
  23. b09e71f finish stubbing out support for HeaderMap. Now we just need an implementation! by Chris Lattner · 17 years ago
  24. afded5b refactor an better comment framework lookup code. This moves it from by Chris Lattner · 17 years ago
  25. df77233 as it turns out, frameworks and headermaps are orthogonal. Make this so in by Chris Lattner · 17 years ago
  26. 60e4e2b add a portability fixme. by Chris Lattner · 17 years ago
  27. b94c707 teach RemoveDuplicates about header maps. by Chris Lattner · 17 years ago
  28. 822da61 Step #1 in adding headermap support to clang. by Chris Lattner · 17 years ago
  29. d665527 rearrange some code and make it more efficient. by Chris Lattner · 17 years ago
  30. 0113edd add a hack so that codegen doesn't abort on missing sema of initializers, now by Chris Lattner · 17 years ago
  31. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  32. cc8b7f9 Start generating SSE intrinsics. by Anders Carlsson · 17 years ago
  33. 3cc4af8 by Steve Naroff · 17 years ago
  34. 8f3dab8 swtich to smallptrset, which is more efficient than std::set. by Chris Lattner · 17 years ago
  35. 80e1715 make clang -v output more similar to gcc's -v output. by Chris Lattner · 17 years ago
  36. 6086bbd We now support all MMX intrinsics. SSE intrinsics are next. by Anders Carlsson · 17 years ago
  37. dee7359 simplify the interfaces to ProcessInputFile and InitializePreprocessor by Chris Lattner · 17 years ago
  38. f816f77 Removed "isSizeOfExpr" mode from StmtIterator. It turned out not to be by Ted Kremenek · 17 years ago
  39. b51d2b2 Added "mode" to StmtIterator to record if the expression being iterated by Ted Kremenek · 17 years ago
  40. 58dbdeb by Steve Naroff · 17 years ago
  41. 699e9fb Added support to StmtIterator to traverse the size expression of a VLA type by Ted Kremenek · 17 years ago
  42. 2929cfa Simplify the vector code. Add more shift intrinsics. by Anders Carlsson · 17 years ago
  43. a675133 IE Menu Problem... by Kevin · 17 years ago
  44. 9b73b39 Array subscription in aggregate expression by Seo Sanghyeon · 17 years ago
  45. 7777bb2 Implement dereference operator in aggregate expression by Seo Sanghyeon · 17 years ago
  46. a651e0e CFG bug fix: for sizeof(expressions), don't expand the control-flow by Ted Kremenek · 17 years ago
  47. 06cef25 Patch to make ObjcQualifiedInterfaceType inherit ObjcInterfaceType by Fariborz Jahanian · 17 years ago
  48. 4d83220 by Steve Naroff · 17 years ago
  49. db9c229 Add hack to SourceManager to support missing source files during by Ted Kremenek · 17 years ago
  50. fe4e015 Add check in the driver to see if a serialized AST file has been successfully by Ted Kremenek · 17 years ago
  51. cc92709 Changed set of top-level decls from a list to a vector. by Ted Kremenek · 17 years ago
  52. 3821d40 Changed -serialize-ast to not create a temporary directory, but instead by Ted Kremenek · 17 years ago
  53. 0404cd8 Set target data layout info in module. by Chris Lattner · 17 years ago
  54. b62f651 typo by Chris Lattner · 17 years ago
  55. 2fbb049 debug info too. by Chris Lattner · 17 years ago
  56. 3cbe428 Minor spelling; punctuation correction. by Ted Kremenek · 17 years ago
  57. 05faa37 Grammar fix: correct ' usage. by Bill Wendling · 17 years ago
  58. 0502613 minor cleanups by Chris Lattner · 17 years ago
  59. 99852af add some builtins. by Chris Lattner · 17 years ago
  60. 1feedd8 simplify some code. by Chris Lattner · 17 years ago
  61. 1dcf2c8 Don't do integer promotions of LHS for compound shift assignment. The LHS has to be a modifiable lvalue. by Chris Lattner · 17 years ago
  62. e0cbae4 remove some dead styles. by Chris Lattner · 17 years ago
  63. 6c9f975 nuke hte status page. by Chris Lattner · 17 years ago
  64. 36952d9 add a bunch of open projects by Chris Lattner · 17 years ago
  65. 137bd91 Updated serialization of ParmVarDecl to serialize out objcDeclQualifier. by Ted Kremenek · 17 years ago
  66. 623ec62 split get_involved into two pages: get_started and get_involved. by Chris Lattner · 17 years ago
  67. de9a4f5 wrap to 80 cols, many fixes to markup. by Chris Lattner · 17 years ago
  68. 81a56ec For uninitialized values analysis, added special treatment for declarations by Ted Kremenek · 17 years ago
  69. f62aea3 Fix file header. by Chris Lattner · 17 years ago
  70. 8d9ebae Fixed bug in live-variable analysis and uninitialized-values analysis where by Ted Kremenek · 17 years ago
  71. aa715be use new interface. by Chris Lattner · 17 years ago
  72. 53702cd add a helper method. by Chris Lattner · 17 years ago
  73. 5dc043d Add assert to detect incomplete implementation work. by Devang Patel · 17 years ago
  74. de7b4cd Moved ObjcDeclQualifier to ParmVarDecl from VarDecl. by Fariborz Jahanian · 17 years ago
  75. 1426fec builtin id 0 is invalid, don't use a slot for it. by Chris Lattner · 17 years ago
  76. a1fa3a1 Implemented -serialize-ast option for the driver. This is not really tested by Ted Kremenek · 17 years ago
  77. 4319b84 Fixed test to match the new diagnostic text. by Fariborz Jahanian · 17 years ago
  78. 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
  79. ab6c94c fix off-by-one error. by Chris Lattner · 17 years ago
  80. 20e9748 Implemented prototype mode where the driver can operate on serialized ASTs by Ted Kremenek · 17 years ago
  81. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  82. 5e71124 by Steve Naroff · 17 years ago
  83. 21584fe Removed "NULL" from default construction of FullSourceLoc (compilation errors on by Ted Kremenek · 17 years ago
  84. e0579f0 constified getFullLoc(). by Ted Kremenek · 17 years ago
  85. 1b924fd Changes to FullSourceLoc: by Ted Kremenek · 17 years ago
  86. 2a2da1d Renamed getFullSourceLoc() -> getFullLoc(). by Ted Kremenek · 17 years ago
  87. ea86469 Added method: Preprocessor::getFullSourceLoc. Used by clients of Preprocessor by Ted Kremenek · 17 years ago
  88. e03a2f3 Renamed FullContextSourceLocation to FullSourceLoc. by Ted Kremenek · 17 years ago
  89. b71d5f8 Added utility static method to FullContextSourceLocation by Ted Kremenek · 17 years ago
  90. 0e39105 make it a bit more clear in what way the ivar is consistent. by Chris Lattner · 17 years ago
  91. 5564e07 add an ivar_size() method that never returns -1. by Chris Lattner · 17 years ago
  92. 25bb23a Constified a predicate method. by Ted Kremenek · 17 years ago
  93. a9793ed Added class FullContextSourceLocation: a tuple class that by Ted Kremenek · 17 years ago
  94. 609e4c7 simplify some code, bump j. This fixes the remaining test failures. by Chris Lattner · 17 years ago
  95. bbced58 Moved construction of TargetInfo objects out of the Driver by Ted Kremenek · 17 years ago
  96. 23c3bb7 handle the -1'ness of undefined lists by Chris Lattner · 17 years ago
  97. 4c52509 unbreak the build. I'm still working on test failures. by Chris Lattner · 17 years ago
  98. 33ef259 fix typo by Chris Lattner · 17 years ago
  99. be6df08 more cleanups changing things like getInstanceVariables to iterators. by Chris Lattner · 17 years ago
  100. 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