oota-llvm.git
12 years agoAdd LanguageKit and Pragmatic Smalltalk to the External Projects list.
Bill Wendling [Wed, 26 Oct 2011 18:20:54 +0000 (18:20 +0000)]
Add LanguageKit and Pragmatic Smalltalk to the External Projects list.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143040 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoThe order of the two symbol listings in a Macho x86_64 subtractor relocation is rever...
Owen Anderson [Wed, 26 Oct 2011 17:28:49 +0000 (17:28 +0000)]
The order of the two symbol listings in a Macho x86_64 subtractor relocation is reversed from what seems intuitive to me.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143035 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoThumb2 remove redundant ".w" suffix from t2MVNCCi pattern.
Jim Grosbach [Wed, 26 Oct 2011 17:28:15 +0000 (17:28 +0000)]
Thumb2 remove redundant ".w" suffix from t2MVNCCi pattern.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143034 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoInclude the full 64 bits of relocation data in the type info for MachO relocations...
Owen Anderson [Wed, 26 Oct 2011 17:10:22 +0000 (17:10 +0000)]
Include the full 64 bits of relocation data in the type info for MachO relocations, so that we can recognize scattered relocations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143033 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoExpand relocation type field to 64 bits. MachO scattered relocations require 33...
Owen Anderson [Wed, 26 Oct 2011 17:08:49 +0000 (17:08 +0000)]
Expand relocation type field to 64 bits.  MachO scattered relocations require 33 bits of type info.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143032 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoImprove pretty printing of GOT relocations in MachO on x86_64.
Owen Anderson [Wed, 26 Oct 2011 17:05:20 +0000 (17:05 +0000)]
Improve pretty printing of GOT relocations in MachO on x86_64.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143031 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoMy super-optimizer noticed that we weren't folding this expression to
Duncan Sands [Wed, 26 Oct 2011 15:31:51 +0000 (15:31 +0000)]
My super-optimizer noticed that we weren't folding this expression to
true: (x *nsw x) sgt 0, where x = (y | 1).  This occurs in 464.h264ref.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143028 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSimplify SplitVecRes_UnaryOp by removing all the code that is
Duncan Sands [Wed, 26 Oct 2011 14:11:18 +0000 (14:11 +0000)]
Simplify SplitVecRes_UnaryOp by removing all the code that is
trying to legalize the operand types when only the result type
is required to be legalized - the type legalization machinery
will get round to the operands later if they need legalizing.
There can be a point to legalizing operands in parallel with
the result: when this saves compile time or results in better
code.  There was only one case in which this was true: when
the operand is also split, so keep the logic for that bit.
As a result of this change, additional operand legalization
methods may need to be introduced to handle nodes where the
result and operand types can differ, like SIGN_EXTEND, but
the testsuite doesn't contain any tests where this is the case.
In any case, it seems better to require such methods (and die
with an assert if they doesn't exist) than to quietly produce
wrong code if we forgot to special case the node in
SplitVecRes_UnaryOp.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143026 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd ThreadSanitizer to the External Projects list.
Bill Wendling [Wed, 26 Oct 2011 09:25:01 +0000 (09:25 +0000)]
Add ThreadSanitizer to the External Projects list.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143024 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRevert r142530 at least temporarily while a discussion is had on llvm-commits regardi...
James Molloy [Wed, 26 Oct 2011 08:53:19 +0000 (08:53 +0000)]
Revert r142530 at least temporarily while a discussion is had on llvm-commits regarding exactly how much optsize should optimize for size over performance.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143023 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd ZooLib to the External Projects list.
Bill Wendling [Wed, 26 Oct 2011 07:42:45 +0000 (07:42 +0000)]
Add ZooLib to the External Projects list.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143022 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd the Stupid D Compiler to the External Projects list.
Bill Wendling [Wed, 26 Oct 2011 07:38:19 +0000 (07:38 +0000)]
Add the Stupid D Compiler to the External Projects list.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143020 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoUse a worklist to prevent the iterator from becoming invalidated because of the ...
Bill Wendling [Wed, 26 Oct 2011 07:16:18 +0000 (07:16 +0000)]
Use a worklist to prevent the iterator from becoming invalidated because of the 'removeSuccessor' call. Noticed in a Release+Asserts+Check buildbot.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143018 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoFix grammar.
Bill Wendling [Wed, 26 Oct 2011 04:24:15 +0000 (04:24 +0000)]
Fix grammar.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143012 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove unused variable.
Eric Christopher [Wed, 26 Oct 2011 03:47:16 +0000 (03:47 +0000)]
Remove unused variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143011 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRevert 142997. It doesn't work on Mac OS or the BSDs, which all use the BSD
Charles Davis [Wed, 26 Oct 2011 02:28:32 +0000 (02:28 +0000)]
Revert 142997. It doesn't work on Mac OS or the BSDs, which all use the BSD
version of the install program, which does not have the --strip-program
switch.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143009 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDon't use floating point to do an integer's job.
Jakob Stoklund Olesen [Wed, 26 Oct 2011 01:47:48 +0000 (01:47 +0000)]
Don't use floating point to do an integer's job.

This code makes different decisions when compiled into x87 instructions
because of different rounding behavior.  That caused phase 2/3
miscompares on 32-bit Linux when the phase 1 compiler was built with gcc
(using x87), and the phase 2 compiler was built with clang (using SSE).

This fixes PR11200.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143006 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDisable LICM speculation in high register pressure situation again now that Devang...
Evan Cheng [Wed, 26 Oct 2011 01:26:57 +0000 (01:26 +0000)]
Disable LICM speculation in high register pressure situation again now that Devang has fixed other issues.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143003 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRevert part of r142530. The patch potentially hurts performance especially
Evan Cheng [Wed, 26 Oct 2011 01:17:44 +0000 (01:17 +0000)]
Revert part of r142530. The patch potentially hurts performance especially
on Darwin platforms where -Os means optimize for size without hurting
performance.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143002 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoReapply r142920 with fix:
Bill Wendling [Wed, 26 Oct 2011 01:10:25 +0000 (01:10 +0000)]
Reapply r142920 with fix:

An MBB which branches to an EH landing pad shouldn't be considered for tail merging.

In SjLj EH, the jump to the landing pad is not done explicitly through a branch
statement. The EH landing pad is added as a successor to the throwing
BB. Because of that however, the branch folding pass could mistakenly think that
it could merge the throwing BB with another BB. This isn't safe to do.
<rdar://problem/10334833>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143001 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd a note about the removal of the atomic intrinsics to the "Major Changes" section...
Eli Friedman [Wed, 26 Oct 2011 00:55:23 +0000 (00:55 +0000)]
Add a note about the removal of the atomic intrinsics to the "Major Changes" section of the release notes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142998 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSearch for and use the strip program and pass it to install for it
Eric Christopher [Wed, 26 Oct 2011 00:52:13 +0000 (00:52 +0000)]
Search for and use the strip program and pass it to install for it
to use for stripping final executables.

Patch by Simon Atanasyan!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142997 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoHandle newer cases for freebsd which is approaching 10.0 and not 1.0.
Eric Christopher [Wed, 26 Oct 2011 00:42:12 +0000 (00:42 +0000)]
Handle newer cases for freebsd which is approaching 10.0 and not 1.0.

Patch by Dimitry Andric!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142995 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove dead atomic intrinsics from LangRef.
Eli Friedman [Wed, 26 Oct 2011 00:36:41 +0000 (00:36 +0000)]
Remove dead atomic intrinsics from LangRef.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142994 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoThe bitcode reader can create an shuffle with a place holder mask which it will
Mon P Wang [Wed, 26 Oct 2011 00:34:48 +0000 (00:34 +0000)]
The bitcode reader can create an shuffle with a place holder mask which it will
fix up later. For this special case, allow such a mask to be considered valid.
<rdar://problem/8622574>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142992 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of AddressSanitizer to external OS projects.
Bill Wendling [Wed, 26 Oct 2011 00:17:54 +0000 (00:17 +0000)]
Add mention of AddressSanitizer to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142991 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of Mono to external OS projects.
Bill Wendling [Wed, 26 Oct 2011 00:16:17 +0000 (00:16 +0000)]
Add mention of Mono to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142990 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of ClamAV to external OS projects.
Bill Wendling [Wed, 26 Oct 2011 00:14:36 +0000 (00:14 +0000)]
Add mention of ClamAV to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142989 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of Renderscript to external OS projects.
Bill Wendling [Wed, 26 Oct 2011 00:12:04 +0000 (00:12 +0000)]
Add mention of Renderscript to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142988 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of GHC to external OS projects.
Bill Wendling [Wed, 26 Oct 2011 00:09:55 +0000 (00:09 +0000)]
Add mention of GHC to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142987 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agollvm-nm: Use correct format string. Patch by Stepan Dyatkovskiy!
Michael J. Spencer [Tue, 25 Oct 2011 22:45:47 +0000 (22:45 +0000)]
llvm-nm: Use correct format string. Patch by Stepan Dyatkovskiy!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142984 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoObject/Archive: Cleanup anon namespace.
Michael J. Spencer [Tue, 25 Oct 2011 22:31:11 +0000 (22:31 +0000)]
Object/Archive: Cleanup anon namespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142983 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoObject: change test to create archive.
Michael J. Spencer [Tue, 25 Oct 2011 22:30:58 +0000 (22:30 +0000)]
Object: change test to create archive.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142982 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoObject/Archive: Add BSD style long file name support and skip internal members.
Michael J. Spencer [Tue, 25 Oct 2011 22:30:42 +0000 (22:30 +0000)]
Object/Archive: Add BSD style long file name support and skip internal members.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142981 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove extraneous printing of "-PC".
Owen Anderson [Tue, 25 Oct 2011 20:44:00 +0000 (20:44 +0000)]
Remove extraneous printing of "-PC".

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142970 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of SAFECode to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:40:26 +0000 (20:40 +0000)]
Add mention of SAFECode to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142966 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of Pure to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:39:06 +0000 (20:39 +0000)]
Add mention of Pure to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142965 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of Portable OpenCL to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:37:45 +0000 (20:37 +0000)]
Add mention of Portable OpenCL to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142963 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd support for the notion of "hidden" relocations. On MachO, these are relocation...
Owen Anderson [Tue, 25 Oct 2011 20:35:53 +0000 (20:35 +0000)]
Add support for the notion of "hidden" relocations.  On MachO, these are relocation entries that are used as additional information for other, real relocations, rather than being relocations themselves.
I'm not familiar enough with ELF or COFF to know if they should have any relocations marked hidden.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142961 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of gwScript to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:35:31 +0000 (20:35 +0000)]
Add mention of gwScript to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142960 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove a couple redundant checks.
Eli Friedman [Tue, 25 Oct 2011 20:34:22 +0000 (20:34 +0000)]
Remove a couple redundant checks.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142959 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd a few test cases to ensure the bitcode reader is backward compatible with
Chad Rosier [Tue, 25 Oct 2011 20:33:19 +0000 (20:33 +0000)]
Add a few test cases to ensure the bitcode reader is backward compatible with
LLVM 2.9.  My understanding is that we plan to maintain compatibility with 2.9
until the 3.1 release.  At that time we can generate new test cases using LLVM
3.0.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142958 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoMake assert() message more informative.
Jim Grosbach [Tue, 25 Oct 2011 20:30:48 +0000 (20:30 +0000)]
Make assert() message more informative.

PR11217.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142956 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd mention of Tart to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:27:37 +0000 (20:27 +0000)]
Add mention of Tart to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142955 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd TTA-based Co-design Environment to external OS projects.
Bill Wendling [Tue, 25 Oct 2011 20:24:32 +0000 (20:24 +0000)]
Add TTA-based Co-design Environment to external OS projects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142954 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoFix off-by-one error when printing relocations inline with disassembly.
Owen Anderson [Tue, 25 Oct 2011 20:15:39 +0000 (20:15 +0000)]
Fix off-by-one error when printing relocations inline with disassembly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142952 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAccording to Mips folks, the backend is now generally reliable (they can
Bruno Cardoso Lopes [Tue, 25 Oct 2011 20:09:31 +0000 (20:09 +0000)]
According to Mips folks, the backend is now generally reliable (they can
compile and use a bunch of stuff using o32 abi). Also the rt-rk.com team
claims that the JIT support they contributed, is complete for the mips
"static" relocation model.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142950 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSimplify tests by not piping them through llvm-dis.
Chad Rosier [Tue, 25 Oct 2011 19:59:50 +0000 (19:59 +0000)]
Simplify tests by not piping them through llvm-dis.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142948 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoTeach the MachO relocation pretty-printer to interpret ARM half-relocations.
Owen Anderson [Tue, 25 Oct 2011 18:48:41 +0000 (18:48 +0000)]
Teach the MachO relocation pretty-printer to interpret ARM half-relocations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142938 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoThis is the first of several patches for Mips direct object generation.
Bruno Cardoso Lopes [Tue, 25 Oct 2011 18:13:20 +0000 (18:13 +0000)]
This is the first of several patches for Mips direct object generation.
This first patch is for expression variable kinds.

Patch by Jack Carter!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142934 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoCorrects previously incorrect $sp change in MipsCompilationCallback.
Bruno Cardoso Lopes [Tue, 25 Oct 2011 17:30:47 +0000 (17:30 +0000)]
Corrects previously incorrect $sp change in MipsCompilationCallback.
The address for $sp, and addresses for sdc1/ldc1 must be 8-byte aligned

Patch by Petar Jovanovic.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142930 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRevert commit 142891. Takumi bisected the tablegen miscompiles
Duncan Sands [Tue, 25 Oct 2011 12:30:22 +0000 (12:30 +0000)]
Revert commit 142891.  Takumi bisected the tablegen miscompiles
down to this commit.  Original commit message:

An MBB which branches to an EH landing pad shouldn't be considered for tail merging.

In SjLj EH, the jump to the landing pad is not done explicitly through a branch
statement. The EH landing pad is added as a successor to the throwing
BB. Because of that however, the branch folding pass could mistakenly think that
it could merge the throwing BB with another BB. This isn't safe to do.
<rdar://problem/10334833>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142920 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRestore commits 142790 and 142843 - they weren't breaking the build
Duncan Sands [Tue, 25 Oct 2011 12:28:52 +0000 (12:28 +0000)]
Restore commits 142790 and 142843 - they weren't breaking the build
bots.  Original commit messages:
- Reapply r142781 with fix. Original message:

  Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the
  loop header when computing the trip count.

  With this, we now constant evaluate:
    struct ListNode { const struct ListNode *next; int i; };
    static const struct ListNode node1 = {0, 1};
    static const struct ListNode node2 = {&node1, 2};
    static const struct ListNode node3 = {&node2, 3};
    int test() {
      int sum = 0;
      for (const struct ListNode *n = &node3; n != 0; n = n->next)
        sum += n->i;
      return sum;
    }

- Now that we look at all the header PHIs, we need to consider all the header PHIs
  when deciding that the loop has stopped evolving. Fixes miscompile in the gcc
  torture testsuite!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142919 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoFix the API usage in loop probability heuristics. It was incorrectly
Chandler Carruth [Tue, 25 Oct 2011 09:47:41 +0000 (09:47 +0000)]
Fix the API usage in loop probability heuristics. It was incorrectly
classifying many edges as exiting which were in fact not. These mainly
formed edges into sub-loops. It was also not correctly classifying all
returning edges out of loops as leaving the loop. With this match most
of the loop heuristics are more rational.

Several serious regressions on loop-intesive benchmarks like perlbench's
loop tests when built with -enable-block-placement are fixed by these
updated heuristics. Unfortunately they in turn uncover some other
regressions. There are still several improvemenst that should be made to
loop heuristics including trip-count, and early back-edge management.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142917 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSpeculatively revert commits 142790 and 142843 to see if it fixes
Duncan Sands [Tue, 25 Oct 2011 09:26:43 +0000 (09:26 +0000)]
Speculatively revert commits 142790 and 142843 to see if it fixes
the dragonegg and llvm-gcc self-host buildbots.  Original commit
messages:
- Reapply r142781 with fix. Original message:

  Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the
  loop header when computing the trip count.

  With this, we now constant evaluate:
    struct ListNode { const struct ListNode *next; int i; };
    static const struct ListNode node1 = {0, 1};
    static const struct ListNode node2 = {&node1, 2};
    static const struct ListNode node3 = {&node2, 3};
    int test() {
      int sum = 0;
      for (const struct ListNode *n = &node3; n != 0; n = n->next)
        sum += n->i;
      return sum;
    }

- Now that we look at all the header PHIs, we need to consider all the header PHIs
when deciding that the loop has stopped evolving. Fixes miscompile in the gcc
torture testsuite!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142916 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove dead enum value. There is no DIESectionOffset.
Nick Lewycky [Tue, 25 Oct 2011 07:05:26 +0000 (07:05 +0000)]
Remove dead enum value. There is no DIESectionOffset.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142912 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoFix these test cases to not use .bc files. Otherwise, we run into issues with
Chad Rosier [Tue, 25 Oct 2011 01:22:20 +0000 (01:22 +0000)]
Fix these test cases to not use .bc files.  Otherwise, we run into issues with
bitcode reader/writer backward compatibility.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142896 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoComment out external projects so that they can be refreshed for 3.0.
Bill Wendling [Tue, 25 Oct 2011 01:01:42 +0000 (01:01 +0000)]
Comment out external projects so that they can be refreshed for 3.0.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142893 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove unused forward decl.
Eric Christopher [Tue, 25 Oct 2011 00:55:35 +0000 (00:55 +0000)]
Remove unused forward decl.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142892 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAn MBB which branches to an EH landing pad shouldn't be considered for tail merging.
Bill Wendling [Tue, 25 Oct 2011 00:54:05 +0000 (00:54 +0000)]
An MBB which branches to an EH landing pad shouldn't be considered for tail merging.

In SjLj EH, the jump to the landing pad is not done explicitly through a branch
statement. The EH landing pad is added as a successor to the throwing
BB. Because of that however, the branch folding pass could mistakenly think that
it could merge the throwing BB with another BB. This isn't safe to do.
<rdar://problem/10334833>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142891 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoReally remove Blackfin from the configure script.
Dan Gohman [Tue, 25 Oct 2011 00:36:31 +0000 (00:36 +0000)]
Really remove Blackfin from the configure script.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142889 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoARM assembly parsing and encoding for VLD1 with writeback.
Jim Grosbach [Tue, 25 Oct 2011 00:14:01 +0000 (00:14 +0000)]
ARM assembly parsing and encoding for VLD1 with writeback.

Four entry register lists.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142882 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove the Blackfin backend.
Dan Gohman [Tue, 25 Oct 2011 00:05:42 +0000 (00:05 +0000)]
Remove the Blackfin backend.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142880 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove the SystemZ backend.
Dan Gohman [Mon, 24 Oct 2011 23:48:32 +0000 (23:48 +0000)]
Remove the SystemZ backend.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142878 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoNuke dead code. Nothing generates the VLD1d64QPseudo_UPD instruction.
Jim Grosbach [Mon, 24 Oct 2011 23:40:46 +0000 (23:40 +0000)]
Nuke dead code. Nothing generates the VLD1d64QPseudo_UPD instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142877 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoARM assembly parsing and encoding for VLD1 w/ writeback.
Jim Grosbach [Mon, 24 Oct 2011 23:26:05 +0000 (23:26 +0000)]
ARM assembly parsing and encoding for VLD1 w/ writeback.

Three entry register list variation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142876 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoMore fixes and improvements to MachO relocation pretty-printing, particular for x86...
Owen Anderson [Mon, 24 Oct 2011 23:20:07 +0000 (23:20 +0000)]
More fixes and improvements to MachO relocation pretty-printing, particular for x86 and x86_64 relocations with addends.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142875 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDon't crash on variable insertelement on ARM. PR10258.
Eli Friedman [Mon, 24 Oct 2011 23:08:52 +0000 (23:08 +0000)]
Don't crash on variable insertelement on ARM.  PR10258.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142871 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoCheck the visibility of the global variable before placing it into the stubs
Bill Wendling [Mon, 24 Oct 2011 23:05:43 +0000 (23:05 +0000)]
Check the visibility of the global variable before placing it into the stubs
table. A hidden variable could potentially end up in both lists.
<rdar://problem/10336715>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142869 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoARMConstantPoolMBB::print should print BB number.
Evan Cheng [Mon, 24 Oct 2011 23:01:03 +0000 (23:01 +0000)]
ARMConstantPoolMBB::print should print BB number.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142867 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoARM assembly parsing and encoding for VLD1 w/ writeback.
Jim Grosbach [Mon, 24 Oct 2011 22:16:58 +0000 (22:16 +0000)]
ARM assembly parsing and encoding for VLD1 w/ writeback.

One and two length register list variants.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142861 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd options to enable each individual level for the show-diagnostics tool.
Chad Rosier [Mon, 24 Oct 2011 21:56:50 +0000 (21:56 +0000)]
Add options to enable each individual level for the show-diagnostics tool.
rdar://9683410

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142856 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoARM refactor am6offset usage for VLD1.
Jim Grosbach [Mon, 24 Oct 2011 21:45:13 +0000 (21:45 +0000)]
ARM refactor am6offset usage for VLD1.

Split am6offset into fixed and register offset variants so the instruction
encodings are explicit rather than relying an a magic reg0 marker.
Needed to being able to parse these.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142853 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoGet relocation parsing/dumping to a mostly-working state for MachO files.
Owen Anderson [Mon, 24 Oct 2011 21:44:00 +0000 (21:44 +0000)]
Get relocation parsing/dumping to a mostly-working state for MachO files.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142852 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoNow that we look at all the header PHIs, we need to consider all the header PHIs
Nick Lewycky [Mon, 24 Oct 2011 21:02:38 +0000 (21:02 +0000)]
Now that we look at all the header PHIs, we need to consider all the header PHIs
when deciding that the loop has stopped evolving. Fixes miscompile in the gcc
torture testsuite!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142843 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoAdd support to the old JIT for acquire/release loads and stores on x86. PR11207.
Eli Friedman [Mon, 24 Oct 2011 20:24:21 +0000 (20:24 +0000)]
Add support to the old JIT for acquire/release loads and stores on x86.  PR11207.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142841 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoStub out some of the MachO relocation decoding hooks.
Owen Anderson [Mon, 24 Oct 2011 20:19:18 +0000 (20:19 +0000)]
Stub out some of the MachO relocation decoding hooks.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142840 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoReally unbreak CMake build
Douglas Gregor [Mon, 24 Oct 2011 18:10:52 +0000 (18:10 +0000)]
Really unbreak CMake build

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142822 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoUnbreak CMake build
Douglas Gregor [Mon, 24 Oct 2011 18:09:23 +0000 (18:09 +0000)]
Unbreak CMake build

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142821 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoFix a NEON disassembly case that was broken in the recent refactorings. As more...
Owen Anderson [Mon, 24 Oct 2011 18:04:29 +0000 (18:04 +0000)]
Fix a NEON disassembly case that was broken in the recent refactorings.  As more of this code gets refactored, a lot of these manual decoding hooks should get smaller and/or go away entirely.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142817 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDelete the top-down "Latency" scheduler. Top-down scheduling doesn't handle
Dan Gohman [Mon, 24 Oct 2011 18:01:06 +0000 (18:01 +0000)]
Delete the top-down "Latency" scheduler. Top-down scheduling doesn't handle
physreg dependencies, and upcoming codegen changes will require proper
physreg dependence handling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142816 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDelete the Latency scheduling preference.
Dan Gohman [Mon, 24 Oct 2011 17:56:48 +0000 (17:56 +0000)]
Delete the Latency scheduling preference.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142815 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoChange this overloaded use of Sched::Latency to be an overloaded
Dan Gohman [Mon, 24 Oct 2011 17:55:11 +0000 (17:55 +0000)]
Change this overloaded use of Sched::Latency to be an overloaded
use of Sched::ILP instead, as Sched::Latency is going away.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142813 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove the explicit request for "Latency" scheduling from MSP430,
Dan Gohman [Mon, 24 Oct 2011 17:53:16 +0000 (17:53 +0000)]
Remove the explicit request for "Latency" scheduling from MSP430,
as the Latency scheduler is going away.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142811 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoChange the default scheduler from Latency to ILP, since Latency
Dan Gohman [Mon, 24 Oct 2011 17:45:02 +0000 (17:45 +0000)]
Change the default scheduler from Latency to ILP, since Latency
is going away.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142810 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoUpdate test for r142801.
Jim Grosbach [Mon, 24 Oct 2011 17:26:26 +0000 (17:26 +0000)]
Update test for r142801.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142806 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoXFAIL test on leak checkers.
Benjamin Kramer [Mon, 24 Oct 2011 17:24:05 +0000 (17:24 +0000)]
XFAIL test on leak checkers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142804 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoThumb2 LDM instructions can target PC. Make sure to encode it.
Jim Grosbach [Mon, 24 Oct 2011 17:16:24 +0000 (17:16 +0000)]
Thumb2 LDM instructions can target PC. Make sure to encode it.

PR11220

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142801 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoCleanup. Get rid of the old SjLj EH lowering code. No functionality change.
Bill Wendling [Mon, 24 Oct 2011 17:12:36 +0000 (17:12 +0000)]
Cleanup. Get rid of the old SjLj EH lowering code. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142800 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSink an otherwise unused variable's initializer into the asserts that
Chandler Carruth [Mon, 24 Oct 2011 16:51:55 +0000 (16:51 +0000)]
Sink an otherwise unused variable's initializer into the asserts that
used it. Fixes an unused variable warning from GCC on release builds.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142799 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoImplement comparison operators for BranchProbability in a way that can't overflow...
Benjamin Kramer [Mon, 24 Oct 2011 13:50:56 +0000 (13:50 +0000)]
Implement comparison operators for BranchProbability in a way that can't overflow INT64_MAX.

Add a test case for the edge case that triggers this. Thanks to Chandler for bringing this to my attention.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142794 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRemove return heuristics from the static branch probabilities, and
Chandler Carruth [Mon, 24 Oct 2011 12:01:08 +0000 (12:01 +0000)]
Remove return heuristics from the static branch probabilities, and
introduce no-return or unreachable heuristics.

The return heuristics from the Ball and Larus paper don't work well in
practice as they pessimize early return paths. The only good hitrate
return heuristics are those for:
 - NULL return
 - Constant return
 - negative integer return

Only the last of these three can possibly require significant code for
the returning block, and even the last is fairly rare and usually also
a constant. As a consequence, even for the cold return paths, there is
little code on that return path, and so little code density to be gained
by sinking it. The places where sinking these blocks is valuable (inner
loops) will already be weighted appropriately as the edge is a loop-exit
branch.

All of this aside, early returns are nearly as common as all three of
these return categories, and should actually be predicted as taken!
Rather than muddy the waters of the static predictions, just remain
silent on returns and let the CFG itself dictate any layout or other
issues.

However, the return heuristic was flagging one very important case:
unreachable. Unfortunately it still gave a 1/4 chance of the
branch-to-unreachable occuring. It also didn't do a rigorous job of
finding those blocks which post-dominate an unreachable block.

This patch builds a more powerful analysis that should flag all branches
to blocks known to then reach unreachable. It also has better worst-case
runtime complexity by not looping through successors for each block. The
previous code would perform an N^2 walk in the event of a single entry
block branching to N successors with a switch where each successor falls
through to the next and they finally fall through to a return.

Test case added for noreturn heuristics. Also doxygen comments improved
along the way.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142793 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoRevert "Test commit"
NAKAMURA Takumi [Mon, 24 Oct 2011 10:03:25 +0000 (10:03 +0000)]
Revert "Test commit"

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142792 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoTest commit
NAKAMURA Takumi [Mon, 24 Oct 2011 10:02:59 +0000 (10:02 +0000)]
Test commit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142791 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoReapply r142781 with fix. Original message:
Nick Lewycky [Mon, 24 Oct 2011 06:57:05 +0000 (06:57 +0000)]
Reapply r142781 with fix. Original message:

  Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the
  loop header when computing the trip count.

  With this, we now constant evaluate:
    struct ListNode { const struct ListNode *next; int i; };
    static const struct ListNode node1 = {0, 1};
    static const struct ListNode node2 = {&node1, 2};
    static const struct ListNode node3 = {&node2, 3};
    int test() {
      int sum = 0;
      for (const struct ListNode *n = &node3; n != 0; n = n->next)
        sum += n->i;
      return sum;
    }

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142790 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoDoxygen-ify the comments on the public interface for BPI. Also, move the
Chandler Carruth [Mon, 24 Oct 2011 05:55:58 +0000 (05:55 +0000)]
Doxygen-ify the comments on the public interface for BPI. Also, move the
two more subtle routines to the bottom and expand on their cautionary
comments a bit. No functionality or actual interface change here.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142789 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoPHI nodes not in the loop header aren't part of the loop iteration initial
Nick Lewycky [Mon, 24 Oct 2011 05:51:01 +0000 (05:51 +0000)]
PHI nodes not in the loop header aren't part of the loop iteration initial
state. Furthermore, they might not have two operands. This fixes the underlying
issue behind the crashes introduced in r142781.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142788 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoA dead malloc, a free(NULL) and a free(undef) are all trivially dead
Nick Lewycky [Mon, 24 Oct 2011 04:35:36 +0000 (04:35 +0000)]
A dead malloc, a free(NULL) and a free(undef) are all trivially dead
instructions.

This doesn't introduce any optimizations we weren't doing before (except
potentially due to pass ordering issues), now passes will eliminate them sooner
as part of their own cleanups.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142787 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoSpeculatively revert r142781. Bots are showing
Nick Lewycky [Mon, 24 Oct 2011 04:00:25 +0000 (04:00 +0000)]
Speculatively revert r142781. Bots are showing
  Assertion `i_nocapture < OperandTraits<PHINode>::operands(this) && "getOperand() out of range!"' failed.
coming out of indvars.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142786 91177308-0d34-0410-b5e6-96231b3b80d8

12 years agoWindows/Path.inc: [PR8460] Get rid of ScopedNullTerminator. Thanks to Zvi Rackover!
NAKAMURA Takumi [Mon, 24 Oct 2011 03:27:19 +0000 (03:27 +0000)]
Windows/Path.inc: [PR8460] Get rid of ScopedNullTerminator. Thanks to Zvi Rackover!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142785 91177308-0d34-0410-b5e6-96231b3b80d8