- Jun 28, 2016
-
-
David Majnemer authored
This fixes PR28326. llvm-svn: 273986
-
Vedant Kumar authored
Passing -output-dir path/to/dir to llvm-cov show creates path/to/dir if it doesn't already exist, and prints reports into that directory. In function view mode, all views are written into path/to/dir/functions.$EXTENSION. In file view mode, all views are written into path/to/dir/coverage/$PATH.$EXTENSION. Changes since the initial commit: - Avoid accidentally closing stdout twice. llvm-svn: 273985
-
Nick Lewycky authored
Bonus changes, * placement in X86ISelLowering and 'exerce' -> 'exercise' in test. llvm-svn: 273984
-
Michael Kruse authored
It is only used internally by the ScopInfo pass. By moving it into its own header file we avoid it being processed that use only ScopInfo. llvm-svn: 273983
-
Michael Kruse authored
The methods in ScopBuilder are used for the construction of a Scop, while the remaining classes of ScopInfo are required by all passes that use Polly's polyhedral analysis. llvm-svn: 273982
-
Michael Kruse authored
This function is used by both ScopInfo and ScopBuilder. A common location for this function is required when ScopInfo and ScopBuilder are separated into separate files in the next commit. llvm-svn: 273981
-
Michael Kruse authored
llvm-svn: 273980
-
Jim Ingham authored
<rdar://problem/26998596> llvm-svn: 273979
-
Vedant Kumar authored
This reverts commit r273971. test/profile/instrprof-visibility.cpp is failing because of an uncaught error in SafelyCloseFileDescriptor. llvm-svn: 273978
-
Matt Arsenault authored
This was producing acceses to registers beyond the super register's limits, resulting in verifier failures. llvm-svn: 273977
-
Jordan Rose authored
DiagnosticNoteRenderer asserts trying to emit its "while building module Foo imported from bar.h:5" note when the presumed location of the import is invalid. This assertion was added in r267914, where most uses of 'getFilename' were updated to test 'isValid' instead. This one must have been missed. I can't come up with a test because this location is always valid in C-based code, but external clients that manually import modules (*cough*Swift*cough*) sometimes provide invalid SourceLocations. rdar://problem/26099576 http://reviews.llvm.org/D21111 llvm-svn: 273976
-
Matthias Braun authored
llvm-svn: 273975
-
Michael Kuperstein authored
llvm-svn: 273974
-
Chandler Carruth authored
tests will want different IR. Wanted this when writing tests for the proposed CG update stuff, and this is an easily separable piece. llvm-svn: 273973
-
Saleem Abdulrasool authored
llvm-svn: 273972
-
Vedant Kumar authored
Passing -output-dir path/to/dir to llvm-cov show creates path/to/dir if it doesn't already exist, and prints reports into that directory. In function view mode, all views are written into path/to/dir/functions.$EXTENSION. In file view mode, all views are written into path/to/dir/coverage/$PATH.$EXTENSION. llvm-svn: 273971
-
Vedant Kumar authored
llvm-svn: 273970
-
Vedant Kumar authored
llvm-svn: 273969
-
Vedant Kumar authored
llvm-svn: 273968
-
Xinliang David Li authored
Expose getBPI interface from BFI impl and use it in graph viewer. This eliminates the dependency on old PM interface. llvm-svn: 273967
-
Michael Kuperstein authored
llvm-svn: 273966
-
Matt Arsenault authored
llvm-svn: 273965
-
Matt Arsenault authored
llvm-svn: 273964
-
Greg Clayton authored
Fixup the "shadow" example command to use the function that takes an execution context now that the @lldb.command decorator does the right thing for the command function that takes 5 arguments. A few fixes: - Check the process state to make sure it is stopped - Grab the frame from the "exe_ctx" so this will work during breakpoint callbacks - Print out the SBDeclaration objects of the variables that shadow each other so we can see the source locations of which variable declarations are shodowing each other. llvm-svn: 273963
-
Wolfgang Pieb authored
Differential review: http://reviews.llvm.org/D21522 llvm-svn: 273962
-
Chandler Carruth authored
the new pass manager. This adds operator<< overloads for the various bits of the LazyCallGraph, dump methods for use from the debugger, and debug logging using them to the CGSCC pass manager. Having this was essential for debugging the call graph update patch, and I've extracted what I could from that patch here to minimize the delta. llvm-svn: 273961
-
Todd Fiala authored
Target::Install() was assuming the module at index 0 was the executable. This is often true, but not guaranteed to be the case. The TestInferiorChanged.py test highlighted this when run against iOS. After the binary is replaced in the middle of the test, it becomes the last module in the list. The rest of the Target::Install() logic then clobbers the executable file by using whatever happens to be the first module in the target module list. This change also marks the TestInferiorChanged.py test as a no-debug-info test. llvm-svn: 273960
-
Rafael Espindola authored
Thanks to Benjamin Kramer for noticing. llvm-svn: 273959
-
Rafael Espindola authored
Should fix the shared library build. llvm-svn: 273958
-
Chris Bieneman authored
COMPILER_RT_DEFAULT_TARGET_ABI is not set in base-config-ix.cmake, so we need to move this check into CMakeLists.txt. llvm-svn: 273957
-
Chris Bieneman authored
This reverts commit r273914. This commit broke bots building compiler-rt using LLVM_BUILD_EXTERNAL_COMPILER_RT. See: http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_build/22221/console llvm-svn: 273956
-
George Burgess IV authored
Apparently, MSVC complains if there's an implicit conversion from `unsigned` to `unsigned long long`, if the `unsigned` is the result of a bit shift. llvm-svn: 273955
-
Jason Molenda authored
explicit in how it adds the kernel binary, to guard against the case where a kernel corefile might incorrectly include the kernel's UUID in it (so calling ::GetSharedModule may end up returning the global module cache's copy of the core file instead of adding the kerenl binary). <rdar://problem/26988816> llvm-svn: 273954
-
Davide Italiano authored
llvm-svn: 273953
-
Easwaran Raman authored
Differential revision: http://reviews.llvm.org/D21690 llvm-svn: 273952
-
Sanjay Patel authored
[InstCombine] shrink type of sdiv if dividend is sexted and constant divisor is small enough (PR28153) This should fix PR28153: https://llvm.org/bugs/show_bug.cgi?id=28153 Differential Revision: http://reviews.llvm.org/D21769 llvm-svn: 273951
-
Chris Dewhurst authored
llvm-svn: 273950
-
Chris Dewhurst authored
This change reverts a "false" test that was placed to avoid regressions while the atomics pass was completed for the Sparc back-ends. llvm-svn: 273949
-
- Jun 27, 2016
-
-
Yaxun Liu authored
"chmod u-x *" does not work for lit on cygwin. llvm-svn: 273948
-
Matt Arsenault authored
Not sure this actually changes anything llvm-svn: 273947
-