- Mar 27, 2013
-
-
John Thompson authored
Broke out header file list reading into separate function. Moved options to front. Removed some trailing spaces. llvm-svn: 178182
-
John Thompson authored
llvm-svn: 178172
-
Ariel J. Bernal authored
cpp11-migrate segfaults when -use-auto tries to resolve initializing expression resulting in an expression with cleanups. - Skip expressions with cleanups from the initializer - Added test case Fixes PR15550 llvm-svn: 178167
-
John Thompson authored
llvm-svn: 178164
-
John Thompson authored
Revised to use MemoryBuffer. Removed redundant llvm:: qualifiers. Removed unnecessary c_str() calls. Reformatted with clang-format. llvm-svn: 178104
-
- Mar 26, 2013
-
-
John Thompson authored
llvm-svn: 178047
-
Edwin Vane authored
Sam Panzer, author of loop convert, provided a list of limitations of the tool to be documented. (Thanks Sam!) The transform's limitations are now documented in the existing user doc. Included are examples of the cases where the tool may change semantics. Author: Jack Yang <jack.yang@intel.com> llvm-svn: 178034
-
John Thompson authored
llvm-svn: 177960
-
John Thompson authored
Revised to use file list path as reference path, or path provide by new -prefix option. Revised to use LLVM option parser. llvm-svn: 177959
-
- Mar 25, 2013
-
-
Edwin Vane authored
Related to PR15589. llvm-svn: 177891
-
Edwin Vane authored
Fix build dependency. Now can say 'make cpp11-migrate' (with cmake anyway) from a clean build and result will be usable. Author: Ariel J Bernal <ariel.j.bernal@intel.com> llvm-svn: 177871
-
Daniel Jasper authored
These will be re-added to clang/test. llvm-svn: 177852
-
- Mar 20, 2013
-
-
Daniel Jasper authored
llvm-svn: 177507
-
Daniel Jasper authored
llvm-svn: 177504
-
- Mar 19, 2013
-
-
Edwin Vane authored
In case of macro body expansion, check to see if the macro is named NULL and don't replace inside the macro body. This fixes the case when NULL appears inside the macro body and the transform replaces the usage of the macro with nullptr. This is an easy fix for the problem for now and we should analyze the macro body to see if it expands to only NullToPointer in the future for a more robust solution that takes care of user defined macros that behaves like NULL. Other changes: - Moved complex macro tests to macros.cpp - Added new test cases. - Added checks to make sure that the macro bodies are not modified by the tool. Fixes: PR15396 Author: Tareq A Siraj <tareq.a.siraj@intel.com> llvm-svn: 177422
-
- Mar 15, 2013
-
-
Edwin Vane authored
The outer-most explicit cast is now left alone by the Use-Nullptr transform to maintain the type of the expression and avoid introducing ambiguities. Fixes PR15395. Author: Ariel J Bernal <ariel.j.bernal@intel.com> llvm-svn: 177179
-
Edwin Vane authored
The Use-Nullptr transform was replacing nullptr_t-typed expressions because in the AST such expressions have an implicit NullToPointer cast around them. Now the transform ignores these expressions. Fixes PR15414. llvm-svn: 177168
-
- Mar 14, 2013
-
-
Edwin Vane authored
Populated file with known existing owners. llvm-svn: 177083
-
John Thompson authored
llvm-svn: 176998
-
- Mar 12, 2013
-
-
John Thompson authored
llvm-svn: 176883
-
Sean Silva authored
"This documentation" could be construed as the entire c-t-e docs (despite being under a doxygen heading; people read "locally" sometimes), which gives a bad impression. llvm-svn: 176849
-
John Thompson authored
Initial check in of Doug's modularize tool for checking header readiness for modules, plus some changes per review feedback: Removed system headers, changed to use stream output, added file name in message. llvm-svn: 176847
-
- Mar 09, 2013
-
-
Edwin Vane authored
llvm-svn: 176758
-
Edwin Vane authored
Each transform belongs in its own sub-page now. Minor refactoring to reflect new heading levels. llvm-svn: 176757
-
Edwin Vane authored
Reviewers: silvas, gribozavr llvm-svn: 176735
-
- Mar 08, 2013
-
-
Edwin Vane authored
There are no python modules in clang-tools-extra so a link to this auto-generated page, which currently isn't generated anyway, is not necessary. llvm-svn: 176713
-
Edwin Vane authored
Turned on doxygen warnings and fixed the resulting problems. llvm-svn: 176712
-
Edwin Vane authored
Since no_xform is not a bug to be fixed, made the test pass using the 'not' utility and removed XFAIL. llvm-svn: 176709
-
Edwin Vane authored
The loop convert tests for conflicting names have been extended to check for macro names, types, and language keywords including language extensions. Tests have also been added. Fixes PR15322 Author: Jack Yang <jack.yang@intel.com> Reviewer: gribozavr, klimek, revane llvm-svn: 176690
-
- Mar 07, 2013
-
-
Edwin Vane authored
For iterators where the dereference operator returns by value, LoopConvert should use 'auto &&' in the range-based for loop expression. If the dereference operator returns an rvalue reference, this is deemed too strange and the for loop is not converted. Moved test case from iterator_failing.cpp to iterator.cpp and added extra tests. Fixes PR15437. Reviewer: gribozavr llvm-svn: 176631
-
Chandler Carruth authored
NOTE: You may need to run 'make clean' or 'ninja -t clean' etc!!! This is due to really nasty bug/interactions between CMake/configure/make/Ninja/LIT... This commit tries to back out the support for generating test cases as part of the build system due to the issues I brought up in post-commit review: 1) It adds a *lot* of complexity and fragility to the build system. See the number of commits required to try to get all the bots happy. 2) It isn't really necessary -- we can already run scripts to generate things with the RUN lines of a test. 3) It makes the tests somewhat harder to debug as they cross between more domains. 4) In almost all cases it isn't really needed or it can be done directly using the preprocessor. I should have been more proactive reviewing this, and I'm really sorry about the churn here. =/ To help keep track of what commits are going where, this backs out most of the non-test-changes from these revisions: r176397 r176373 r176293 r176184 r175744 r175624 r175545 r175544 There were several trivial or cleanup changes to the lit files or other files. Some of these looked ok, but I didn't try to tease them apart... Edwin, if you know what to look for, please carry on with the cleanups there, and sorry for hosing stuff here but I'm not much of a Python person, and so I was erring on the side of cautiously backing out the change. I've tried to preserve the test changes everywhere I could, but review is appreciated here in case I missed some. I then re-wrote the tests to use the preprocessor rather than python to expand to the various bits of code. The nicest part of this is that now all the files are just C++ code. They edit and behave like C++ code, etc. RUN lines with different -D flags are used to run the same test over multiple different configurations, and includes bracketed in special defines are used to flesh out a collection of standard interface stubs to test interactions between pieces. These probably aren't perfect yet, but I think its an improvement (at least in terms of build system complexity) and will hopefully be a useful demonstration of the technique I prefer for these types of tests. llvm-svn: 176627
-
- Mar 06, 2013
-
-
Stefanus Du Toit authored
The use-null-ptr transform will transform calls to functions that return a nullptr_t. Even if the function were to only return a null pointer and do nothing else, this replacement would still be undesired as the behavior and signature of the function could change in the future. This adds an XFAILed test case to demonstrate the issue. Reviewed by: Edwin Vane, Tareq Siraj llvm-svn: 176553
-
Edwin Vane authored
Before fix, the paren expression was being replaced resulting in returnnullptr. ParenExpr and implicit casts now ignored so we get return(nullptr) instead. Added new test cases. Fixes PR15398 Author: Ariel Bernal <ariel.j.bernal@intel.com> llvm-svn: 176551
-
- Mar 05, 2013
-
-
Dmitri Gribenko authored
Added a summary option that enables output to stdout counting the number of changes each transform has accepted, rejected or deferred. Patch by Ariel Bernal. llvm-svn: 176465
-
- Mar 04, 2013
-
-
Edwin Vane authored
LoopConvert isn't properly handling iterators whose dereference operator returns by value. This test case demonstrates the failure. See PR15437. llvm-svn: 176437
-
Edwin Vane authored
The Loop-Convert transform was mistransforming loops using 'this' implicitly. Fixed and added tests. Fixes PR15411. llvm-svn: 176436
-
- Mar 03, 2013
-
-
Sean Silva authored
That is where the documentation gets built to. I'm pretty much clueless about SVN; I would appreciate if someone more knowledgeable about SVN made the equivalent change. llvm-svn: 176417
-
- Mar 02, 2013
-
-
Benjamin Kramer authored
llvm-svn: 176409
-
Benjamin Kramer authored
llvm-svn: 176406
-
- Mar 01, 2013
-
-
Edwin Vane authored
extra/test/cpp11-migrate/Makefile was using the same tmp file for generating lit.site.cfg for two different directories. Parallelism caused conflicts so now using differently named temp files. llvm-svn: 176379
-