- bbafb8a Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- c1b1729 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 15 years ago[Renamed (96%) from clang/lib/Frontend/RewriteTest.cpp]
- 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- 16b7b6f Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp by Eli Friedman · 16 years ago[Renamed (96%) from clang/tools/clang-cc/RewriteTest.cpp]
- fcb57d5 Switch some utilities in clang-cc to take a stream instead of a by Eli Friedman · 16 years ago
- 7b4df3c Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 17 years ago
- e5a7ecc Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 17 years ago[Renamed from clang/Driver/RewriteTest.cpp]
- 1f7fac0 Add newline at the end of file, to silence compiler warning. by Matthijs Kooijman · 17 years ago
- f6a3bda make the -rewrite-test a bit more interesting: it now by Chris Lattner · 17 years ago
- b6aa53b start implementing a token rewriter. At this point, it just reads in a file by Chris Lattner · 17 years ago
- 1782da2 Add a new -rewrite-test option, which is basically a by Chris Lattner · 17 years ago
- a8f0d12 Rename a file and update the Xcode project. by Steve Naroff · 17 years ago
- 1dc53ef Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
- d61ed3b Use isFromMainFile instead of comparing FileIDs directly. by Ted Kremenek · 17 years ago
- 4fdfbf7 silence some warnings when assertions are disabled. by Chris Lattner · 17 years ago
- 0a5ff0d This patch contains these changes: by Chris Lattner · 17 years ago
- 4dbab8a Avoid implicitly including any header files (requested by ckane). by Steve Naroff · 17 years ago
- af91b9a Rewrite @package (an ObjC 2.0 idiom). by Steve Naroff · 17 years ago
- eae9170 Fix MS-specific bug in RewriteTest::RewriteObjCMethodDecl(). by Steve Naroff · 17 years ago
- c5ffed4 Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
- f9e7c90 Only have the rewriter produce a file when there are no errors. by Steve Naroff · 18 years ago
- 60a9ef6 Add some of Ted's recent work to the VC++ project file. by Steve Naroff · 18 years ago
- 00a3176 Collect all the preamble code and don't insert it until the end. by Steve Naroff · 18 years ago
- 65838bb Add a couple files to VC++ project and cleanup an "#if 0". by Steve Naroff · 18 years ago
- 97d496c Teach the rewriter how to respect the -o option. by Chris Lattner · 18 years ago
- 327f0f4 Fix <rdar://problem/5716940> rewriter generates invalid C code when no selector found. by Steve Naroff · 18 years ago
- 034bcb5 Wrap up __NSConstantStringImpl (the replacement for __builtin___CFStringMakeConstantString). by Steve Naroff · 18 years ago
- 41eec3d make property addition work list all other "add" methods. Do by Chris Lattner · 18 years ago
- 8d1c04f Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 18 years ago
- acc04a9 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 18 years ago
- 011b0f5 Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 18 years ago
- ee1284a switch the rest of the C decl classes to do their by Chris Lattner · 18 years ago
- 96c460d move the ASTContext argument to be first in the argument list of by Chris Lattner · 18 years ago
- 5072bae Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 18 years ago
- 4b08ca8 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 18 years ago
- a7b3287 start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 18 years ago
- dad80ba Link against the correct ObjC string class (__CFConstantStringClassReference) and fix length computation (removing a FIXME). by Steve Naroff · 18 years ago
- ce8e886 Remove ObjC rewriter dependency on GCC's __builtin___CFStringMakeConstantString. by Steve Naroff · 18 years ago
- 35cb796 Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 18 years ago
- ffb5f9a Minor aesthetic improvement (after I reviewed my last commit). by Steve Naroff · 18 years ago
- 9f33bd2 Avoid using the "unnamed struct field" extension (enabled with -fms-extensions). This feature/extension silently does the wrong thing in g++. As far as I can tell, g++ simply throws the field away entirely (note that it works fine with gcc). Since I am now always casting the object (for other reasons), accessing protected/public fields simply requires the cast refer to the defining class. This solution is simpler all around (thanks to Chris for suggesting it). by Steve Naroff · 18 years ago
- b327e49 Use the "used" attribute. Without it, g++ removes all the meta-data:-( This doesn't happen when compiling straight C code. by Steve Naroff · 18 years ago
- 5d5efca -Add missing visitor for ObjCIvarRefExpr. by Steve Naroff · 18 years ago
- 251084d Remove more dependencies on C "flexible array member" idiom (when generating meta-data). by Steve Naroff · 18 years ago
- dc5b6b2 Make ivar rewrite C++ friendly (since C++ forces a unified namespace for typedefs/structures). The previous version of the rewriter generated both a type def and structure def for each class (which doesn't fly in C++). by Steve Naroff · 18 years ago
- 0b844f0 Make "super" rewrite for class methods C++ friendly (follow-up from last commit). by Steve Naroff · 18 years ago
- 17978c4 Make "super" rewrite C++ friendly (since it doesn't support Compound Literals). by Steve Naroff · 18 years ago
- c5b9cc7 Generate meta-data in a C++ compatible way (remove 2 dependencies on C "flexible array member" idiom and perform some extra casts). by Steve Naroff · 18 years ago
- 14a0746 Missed a couple "_IMPL" suffixes. by Steve Naroff · 18 years ago
- a1e115e Fix dangling pointer and give the implementation struct for a class a unique name. by Steve Naroff · 18 years ago
- 945a3b1 Pass LangOptions to RewriteTest(). by Steve Naroff · 18 years ago
- 37e0587 remove the source location arguments to various target query methods. by Chris Lattner · 18 years ago
- 1242fff Make sure to propagate qualifiers through the member operator. by Eli Friedman · 18 years ago
- e6b7ffd by Steve Naroff · 18 years ago
- d9dc63f by Steve Naroff · 18 years ago
- edb5bc6 by Steve Naroff · 18 years ago
- 9cc55f5 add some helper methods for removing and replacing text, this makes the by Chris Lattner · 18 years ago
- 1780a85 Add a new InsertText method that does the check to see if the insertion was valid. This by Chris Lattner · 18 years ago
- 187f626 move a large method out of line by Chris Lattner · 18 years ago
- 2e0d260 Make rewriter::inserttext return a bool to indicate if it failed. by Chris Lattner · 18 years ago
- a779d69 Fix a rewriter crash when the whole body of a foreach is itself by Chris Lattner · 18 years ago
- 7b3579b by Steve Naroff · 18 years ago
- 284011b Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 18 years ago
- 909651a by Steve Naroff · 18 years ago
- 60a9016 Fixed a nasty bug which took a while to come up with a test case, by Fariborz Jahanian · 18 years ago
- 0a71ad2 Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 18 years ago
- eab81cd Synthesize methods with va-arg list correctly. by Fariborz Jahanian · 18 years ago
- 137d693 Fixed comment. by Fariborz Jahanian · 18 years ago
- c7d2df2 by Steve Naroff · 18 years ago
- 8025836 Patch to replace #import with #include. by Fariborz Jahanian · 18 years ago
- 159ee39 Insert #pragma once when rewriting a header file. by Fariborz Jahanian · 18 years ago
- 19d42bf Typo. by Fariborz Jahanian · 18 years ago
- b860cbf Added support for rewriting of continue/break statements inside ObjC2's foreach-stmt. by Fariborz Jahanian · 18 years ago
- d32419d by Steve Naroff · 18 years ago
- af5d80c Avoid redefinition of __objcFastEnumerationState by Fariborz Jahanian · 18 years ago
- 7262fca Put return type of synthesize method on same line as method declaration, space after method declaration header. by Fariborz Jahanian · 18 years ago
- 82ae015 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 18 years ago
- 6fa7516 Type-cast RHS of assignment to prevent warning compiling rewritten foreach code. by Fariborz Jahanian · 18 years ago
- 22f23477 Fixed a bug whereby a parethesized collection expression was not being rewritten correctly. by Fariborz Jahanian · 18 years ago
- b7e7ee9 Typo fixed. by Fariborz Jahanian · 18 years ago
- 965a896 Patch to rewrite ObjC2's foreach-stmt. by Fariborz Jahanian · 18 years ago
- dc917b9 Patch to start rewriting of ObjC2's foreach statement (work in progress). by Fariborz Jahanian · 18 years ago
- 1b0ea82 Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 18 years ago
- 266a2ff Compute the proper sourcerange for an CompoundLiteralExpr. by Chris Lattner · 18 years ago
- 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
- b907c3f remove use of alloca. by Chris Lattner · 18 years ago
- 03f8a36 Unbreak mingw build by Anton Korobeynikov · 18 years ago
- 230bd91 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 18 years ago
- 7e718bb by Steve Naroff · 18 years ago
- 55cb4be by Steve Naroff · 18 years ago
- 9f0e310 Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 18 years ago
- 24cb52c Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 18 years ago
- 77b713b Also fixed similar regression for class methods, as well as more indentations. by Fariborz Jahanian · 18 years ago
- 5f64095 Fixed a regression caused by refactoring of some meta-data generation routines using iteratgors. by Fariborz Jahanian · 18 years ago
- 3ce37a6 by Steve Naroff · 18 years ago
- 1daa3cf TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 18 years ago
- 30d23e8 more cleanups changing things like getInstanceVariables to iterators. by Chris Lattner · 18 years ago
- 31bc07e resolve some fixmes and clean up some code by eliminating the get*Vars apis to some classes and use iterators instead. by Chris Lattner · 18 years ago
- 16e703a 80-column please. by Fariborz Jahanian · 18 years ago