oota-llvm.git
13 years agoMake -disable-simplify-libcalls work with -std-compile-opts
Peter Collingbourne [Fri, 18 Feb 2011 02:59:21 +0000 (02:59 +0000)]
Make -disable-simplify-libcalls work with -std-compile-opts

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

13 years agoRecognize monitor/mwait with explicit register arguments
Joerg Sonnenberger [Fri, 18 Feb 2011 00:48:11 +0000 (00:48 +0000)]
Recognize monitor/mwait with explicit register arguments

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

13 years agoCheck the errorcode.
Argyrios Kyrtzidis [Fri, 18 Feb 2011 00:47:07 +0000 (00:47 +0000)]
Check the errorcode.

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

13 years agoTrim debugging output.
Jakob Stoklund Olesen [Fri, 18 Feb 2011 00:32:47 +0000 (00:32 +0000)]
Trim debugging output.

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

13 years agoRecognize leavel and leaveq aliases for leave.
Joerg Sonnenberger [Thu, 17 Feb 2011 23:36:39 +0000 (23:36 +0000)]
Recognize leavel and leaveq aliases for leave.
Validate encoding of leave in 64bit mode.

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

13 years agoDo not lose debug info of an inlined function argument even if the argument is only...
Devang Patel [Thu, 17 Feb 2011 23:33:27 +0000 (23:33 +0000)]
Do not lose debug info of an inlined function argument even if the argument is only used through GEPs.

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

13 years agoCheck that MnemonicAlias doesn't map back to the same string.
Joerg Sonnenberger [Thu, 17 Feb 2011 23:22:19 +0000 (23:22 +0000)]
Check that MnemonicAlias doesn't map back to the same string.

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

13 years agohave instcombine preserve nsw/nuw/exact when sinking
Chris Lattner [Thu, 17 Feb 2011 23:01:49 +0000 (23:01 +0000)]
have instcombine preserve nsw/nuw/exact when sinking
common operations through a phi.

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

13 years agoAdd basic register allocator statistics.
Jakob Stoklund Olesen [Thu, 17 Feb 2011 22:53:48 +0000 (22:53 +0000)]
Add basic register allocator statistics.

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

13 years agofix typo
Chris Lattner [Thu, 17 Feb 2011 22:32:54 +0000 (22:32 +0000)]
fix typo

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

13 years agoNew library: LLVMX86Utils.
Oscar Fuentes [Thu, 17 Feb 2011 22:26:11 +0000 (22:26 +0000)]
New library: LLVMX86Utils.

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

13 years agofix instcombine merging GEPs through a PHI to only make the
Chris Lattner [Thu, 17 Feb 2011 22:21:26 +0000 (22:21 +0000)]
fix instcombine merging GEPs through a PHI to only make the
result inbounds if all of the inputs are inbounds.

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

13 years agoEnhance constant folding of bitcast operations on vectors of floats.
Nadav Rotem [Thu, 17 Feb 2011 21:22:27 +0000 (21:22 +0000)]
Enhance constant folding of bitcast operations on vectors of floats.
Add getAllOnesValue of FP numbers to Constants and APFloat.
Add more tests.

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

13 years agoadd is always integer, thanks to Frits for noticing this.
Chris Lattner [Thu, 17 Feb 2011 20:55:29 +0000 (20:55 +0000)]
add is always integer, thanks to Frits for noticing this.

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

13 years ago[AVX] Recorganize X86ShuffleDecode into its own library
David Greene [Thu, 17 Feb 2011 19:18:59 +0000 (19:18 +0000)]
[AVX] Recorganize X86ShuffleDecode into its own library
(LLVMX86Utils.a) to break cyclic library dependencies between
LLVMX86CodeGen.a and LLVMX86AsmParser.a.  Previously this code was in
a header file and marked static but AVX requires some additional
functionality here that won't be used by all clients.  Since including
unused static functions causes a gcc compiler warning, keeping it as a
header would break builds that use -Werror.  Putting this in its own
library solves both problems at once.

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

13 years agoSplit local live ranges.
Jakob Stoklund Olesen [Thu, 17 Feb 2011 19:13:53 +0000 (19:13 +0000)]
Split local live ranges.

A local live range is live in a single basic block. If such a range fails to
allocate, try to find a sub-range that would get a larger spill weight than its
interference.

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

13 years agoThe labyrinthine X86 backend no longer appears to require
Dan Gohman [Thu, 17 Feb 2011 18:50:19 +0000 (18:50 +0000)]
The labyrinthine X86 backend no longer appears to require
these patterns.

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

13 years agoFix wrong logic in promotion of signed mul-with-overflow (I pointed this out at
Duncan Sands [Thu, 17 Feb 2011 12:42:48 +0000 (12:42 +0000)]
Fix wrong logic in promotion of signed mul-with-overflow (I pointed this out at
the time but presumably my email got lost).  Examples where the previous logic
got it wrong: (1) a signed i8 multiply of 64 by 2 overflows, but the high part is
zero; (2) a signed i8 multiple of -128 by 2 overflows, but the high part is all
ones.

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

13 years agoTriple::MinGW64 is deprecated and removed. We can use Triple::MinGW32 generally.
NAKAMURA Takumi [Thu, 17 Feb 2011 12:24:17 +0000 (12:24 +0000)]
Triple::MinGW64 is deprecated and removed. We can use Triple::MinGW32 generally.

No one uses *-mingw64. mingw-w64 is represented as {i686|x86_64}-w64-mingw32. In llvm side, i686 and x64 can be treated as similar way.

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

13 years agoFix whitespace.
NAKAMURA Takumi [Thu, 17 Feb 2011 12:23:50 +0000 (12:23 +0000)]
Fix whitespace.

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

13 years agoThis has been implemented.
Duncan Sands [Thu, 17 Feb 2011 08:16:56 +0000 (08:16 +0000)]
This has been implemented.

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

13 years agoTransform "A + B >= A + C" into "B >= C" if the adds do not wrap. Likewise for some
Duncan Sands [Thu, 17 Feb 2011 07:46:37 +0000 (07:46 +0000)]
Transform "A + B >= A + C" into "B >= C" if the adds do not wrap.  Likewise for some
variations (some of these were already present so I unified the code).  Spotted by my
auto-simplifier as occurring a lot.

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

13 years agoSwitch to SmallVector in SimpleRegisterCoalescing for a 3.5% speedup on 403.gcc.
Cameron Zwarich [Thu, 17 Feb 2011 06:52:07 +0000 (06:52 +0000)]
Switch to SmallVector in SimpleRegisterCoalescing for a 3.5% speedup on 403.gcc.

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

13 years agoAdjust indenting of arguments.
Cameron Zwarich [Thu, 17 Feb 2011 06:13:46 +0000 (06:13 +0000)]
Adjust indenting of arguments.

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

13 years agoReturn Changed from SplitPHIEdges rather than always returning true.
Cameron Zwarich [Thu, 17 Feb 2011 06:13:43 +0000 (06:13 +0000)]
Return Changed from SplitPHIEdges rather than always returning true.

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

13 years agolit/TestingConfig.py: Add the environment variable PRINTF_EXPONENT_DIGITS as workarou...
NAKAMURA Takumi [Thu, 17 Feb 2011 05:56:41 +0000 (05:56 +0000)]
lit/TestingConfig.py: Add the environment variable PRINTF_EXPONENT_DIGITS as workaround [PR6745] for mingw's tests. Danil Malyshev suggested this.

FIXME: It does not improve MSVC's issue.

[Danil Malyshev] Defining PRINTF_EXPONENT_DIGITS env is the suggested way to make MinGW ANSI/POSIX compatible. This is not only about the case we are discussing, but in general, I'd like to have explicitly defined compatibility mode for all the tests running on MinGW.

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

13 years agoAdd serialization for Expr* arguments for attributes to clang tablegen files.
Sean Hunt [Thu, 17 Feb 2011 03:30:09 +0000 (03:30 +0000)]
Add serialization for Expr* arguments for attributes to clang tablegen files.

Patch thanks to Zach Anderson.

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

13 years agopreserve NUW/NSW when transforming add x,x
Chris Lattner [Thu, 17 Feb 2011 02:23:02 +0000 (02:23 +0000)]
preserve NUW/NSW when transforming add x,x

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

13 years agofilecheckize
Chris Lattner [Thu, 17 Feb 2011 02:21:03 +0000 (02:21 +0000)]
filecheckize

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

13 years agoFix thinko, basic blocks are SESE. The exits may have many edges though.
Nick Lewycky [Thu, 17 Feb 2011 02:19:22 +0000 (02:19 +0000)]
Fix thinko, basic blocks are SESE. The exits may have many edges though.

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

13 years agoadd some notes on compares + binops. Remove redundant entries.
Chris Lattner [Thu, 17 Feb 2011 01:43:46 +0000 (01:43 +0000)]
add some notes on compares + binops.  Remove redundant entries.

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

13 years agofix PR9215, preventing -reassociate from clearing nsw/nuw when
Chris Lattner [Thu, 17 Feb 2011 01:29:24 +0000 (01:29 +0000)]
fix PR9215, preventing -reassociate from clearing nsw/nuw when
it swaps the LHS/RHS of a single binop.

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

13 years agoAdd a few missed xforms from GCC PR14753
Chris Lattner [Wed, 16 Feb 2011 19:16:34 +0000 (19:16 +0000)]
Add a few missed xforms from GCC PR14753

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

13 years agoSwap VT and DebugLoc operands of getExtLoad() for consistency with
Stuart Hastings [Wed, 16 Feb 2011 16:23:55 +0000 (16:23 +0000)]
Swap VT and DebugLoc operands of getExtLoad() for consistency with
other getNode() methods.  Radar 9002173.

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

13 years agoAdd a debug obj-path option to make it easy to keep the .o produce by LTO.
Rafael Espindola [Wed, 16 Feb 2011 11:19:44 +0000 (11:19 +0000)]
Add a debug obj-path option to make it easy to keep the .o produce by LTO.

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

13 years agoRemove outdated README entry.
Eli Friedman [Wed, 16 Feb 2011 07:41:19 +0000 (07:41 +0000)]
Remove outdated README entry.

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

13 years agoRemove outdated README entry.
Eli Friedman [Wed, 16 Feb 2011 07:18:18 +0000 (07:18 +0000)]
Remove outdated README entry.

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

13 years agoUpdate README entry.
Eli Friedman [Wed, 16 Feb 2011 07:17:44 +0000 (07:17 +0000)]
Update README entry.

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

13 years agoRefactor zero folding slightly. Clean up todo.
Eric Christopher [Wed, 16 Feb 2011 04:50:12 +0000 (04:50 +0000)]
Refactor zero folding slightly. Clean up todo.

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

13 years agoGas is very inconsistent about when a relaxation/relocation is needed. Do
Rafael Espindola [Wed, 16 Feb 2011 03:25:55 +0000 (03:25 +0000)]
Gas is very inconsistent about when a relaxation/relocation is needed. Do
the right thing and stop trying to copy it. Fixes PR8944.

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

13 years agoThe change for PR9190 wasn't quite right. We need to avoid making the
Eric Christopher [Wed, 16 Feb 2011 01:10:03 +0000 (01:10 +0000)]
The change for PR9190 wasn't quite right. We need to avoid making the
transformation if we can't legally create a build vector of the correct
type. Check that we can make the transformation first, and add a TODO to
refactor this code with similar cases.

Fixes: PR9223 and rdar://9000350
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125631 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd testcase for PR9190.
Eric Christopher [Wed, 16 Feb 2011 01:08:31 +0000 (01:08 +0000)]
Add testcase for PR9190.

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

13 years agoAdd support for pushsection and popsection. Patch by Joerg Sonnenberger.
Rafael Espindola [Wed, 16 Feb 2011 01:08:29 +0000 (01:08 +0000)]
Add support for pushsection and popsection. Patch by Joerg Sonnenberger.

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

13 years agoRemove a duplicated check.
Evan Cheng [Wed, 16 Feb 2011 00:37:02 +0000 (00:37 +0000)]
Remove a duplicated check.

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

13 years agoSome single precision VFP instructions may be executed on NEON pipeline, but not...
Evan Cheng [Wed, 16 Feb 2011 00:35:02 +0000 (00:35 +0000)]
Some single precision VFP instructions may be executed on NEON pipeline, but not double precision ones.

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

13 years agoTeach PatternMatch that splat vectors could be floating point as well as
Nick Lewycky [Tue, 15 Feb 2011 23:13:23 +0000 (23:13 +0000)]
Teach PatternMatch that splat vectors could be floating point as well as
integer. Fixes PR9228!

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

13 years agoAdd support for parsing [expr].
Roman Divacky [Tue, 15 Feb 2011 20:43:39 +0000 (20:43 +0000)]
Add support for parsing [expr].

This is submitted by Joerg Sonnenberger and fixes his PR8685.

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

13 years agoTeach ARMLoadStoreOptimizer to remove kill flags from merged instructions as well.
Jakob Stoklund Olesen [Tue, 15 Feb 2011 19:51:58 +0000 (19:51 +0000)]
Teach ARMLoadStoreOptimizer to remove kill flags from merged instructions as well.

This is necessary to avoid a crash in certain tangled situations where a kill
flag is first correctly moved to a merged instruction, and then needs to be
moved again:

  STR %R0, a...
  STR %R0<kill>, b...

First becomes:

  STR %R0, b...
  STM a, %R0<kill>, ...

and then:

  STM a, %R0, ...
  STM b, %R0<kill>, ...

We can now remove the kill flag from the merged STM when needed. 8960050.

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

13 years agoIgnore DBG_VALUE machine instructions while constructing instruction ranges based...
Devang Patel [Tue, 15 Feb 2011 17:56:09 +0000 (17:56 +0000)]
Ignore DBG_VALUE machine instructions while constructing instruction ranges based on location info.
Machine instruction range consisting of only DBG_VALUE MIs only contributes consecutive labels in assembly output, which is harmless, and empty scope entry in DebugInfo, which confuses debugger tools.

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

13 years agoImplement a function from PathV2 whose definition is missing.
Argyrios Kyrtzidis [Tue, 15 Feb 2011 17:51:19 +0000 (17:51 +0000)]
Implement a function from PathV2 whose definition is missing.

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

13 years agoMove DbgInfoPrinter specific utlities inside DbgInfoPrinter.cpp
Devang Patel [Tue, 15 Feb 2011 17:36:11 +0000 (17:36 +0000)]
Move DbgInfoPrinter specific utlities inside DbgInfoPrinter.cpp

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

13 years agoPrint function info. Patch by Minjang Kim.
Devang Patel [Tue, 15 Feb 2011 17:24:56 +0000 (17:24 +0000)]
Print function info. Patch by Minjang Kim.

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

13 years agoSpelling fix: consequtive -> consecutive.
Duncan Sands [Tue, 15 Feb 2011 09:23:02 +0000 (09:23 +0000)]
Spelling fix: consequtive -> consecutive.

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

13 years agoWhen tablegen'ing the clang analyzer checkers:
Argyrios Kyrtzidis [Tue, 15 Feb 2011 07:42:16 +0000 (07:42 +0000)]
When tablegen'ing the clang analyzer checkers:

-Use the tablegen class name for the checker class name.
-Mark checker packages as hidden/not hidden.

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

13 years agoFix 9216 - Endless loop in InstCombine pass.
Nadav Rotem [Tue, 15 Feb 2011 07:13:48 +0000 (07:13 +0000)]
Fix 9216 - Endless loop in InstCombine pass.
The pattern "A&(A^B) -> A & ~B" recreated itself because ~B is
actually a xor -1.

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

13 years agoFix thinko. Cmp can be the first instruction in a MBB.
Evan Cheng [Tue, 15 Feb 2011 05:00:24 +0000 (05:00 +0000)]
Fix thinko. Cmp can be the first instruction in a MBB.

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

13 years agoDo not forget DebugLoc!
Devang Patel [Tue, 15 Feb 2011 02:02:30 +0000 (02:02 +0000)]
Do not forget DebugLoc!

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

13 years agotidy up a bit.
Chris Lattner [Tue, 15 Feb 2011 01:56:08 +0000 (01:56 +0000)]
tidy up a bit.

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

13 years agoMinor fixes to tutorial, patch by Benjamin Meyer!
Chris Lattner [Tue, 15 Feb 2011 00:24:32 +0000 (00:24 +0000)]
Minor fixes to tutorial, patch by Benjamin Meyer!

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

13 years agofix comments
Chris Lattner [Tue, 15 Feb 2011 00:23:53 +0000 (00:23 +0000)]
fix comments

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

13 years agoconvert ConstantVector::get to use ArrayRef.
Chris Lattner [Tue, 15 Feb 2011 00:14:00 +0000 (00:14 +0000)]
convert ConstantVector::get to use ArrayRef.

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

13 years agofix some typos.
Chris Lattner [Tue, 15 Feb 2011 00:06:37 +0000 (00:06 +0000)]
fix some typos.

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

13 years agoRemove unused bitvectors that record ARM callee-saved registers.
Bob Wilson [Mon, 14 Feb 2011 23:40:38 +0000 (23:40 +0000)]
Remove unused bitvectors that record ARM callee-saved registers.

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

13 years agoMove more fragments of spill weight calculation into CalcSpillWeights.h
Jakob Stoklund Olesen [Mon, 14 Feb 2011 23:15:38 +0000 (23:15 +0000)]
Move more fragments of spill weight calculation into CalcSpillWeights.h

Simplify the spill weight calculation a bit by bypassing
getApproximateInstructionCount() and using LiveInterval::getSize() directly.
This changes the computed spill weights, but only by a constant factor in each
function. It should not affect how spill weights compare against each other, and
so it shouldn't affect code generation.

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

13 years agoDo not hoist @llvm.dbg.value. Here, @llvm.dbg.value is "referring" a value that is...
Devang Patel [Mon, 14 Feb 2011 23:03:23 +0000 (23:03 +0000)]
Do not hoist @llvm.dbg.value. Here, @llvm.dbg.value is "referring" a value that is modified inside loop.

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

13 years agoSwitch llvm to using comdats. For now always use groups with a single
Rafael Espindola [Mon, 14 Feb 2011 22:23:49 +0000 (22:23 +0000)]
Switch llvm to using comdats. For now always use groups with a single
section.

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

13 years agoPR9139: Specify ARM/Darwin triple for vector-DAGCombine.ll test.
Bob Wilson [Mon, 14 Feb 2011 22:12:50 +0000 (22:12 +0000)]
PR9139: Specify ARM/Darwin triple for vector-DAGCombine.ll test.

The i64_buildvector test in this file relies on the alignment of i64 and
f64 types being the same, which is true for Darwin but not AAPCS.

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

13 years agoFix PR8854. Track inserted copies to avoid read before write. Sorry, it's hard to...
Evan Cheng [Mon, 14 Feb 2011 21:50:37 +0000 (21:50 +0000)]
Fix PR8854. Track inserted copies to avoid read before write. Sorry, it's hard to reduce a sensible small test case.

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

13 years agoA fail to match coprocessor number and register number must fail instead of assert.
Bruno Cardoso Lopes [Mon, 14 Feb 2011 21:10:33 +0000 (21:10 +0000)]
A fail to match coprocessor number and register number must fail instead of assert.

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

13 years agoAdd current binary and source directories to the header search list
Oscar Fuentes [Mon, 14 Feb 2011 20:13:58 +0000 (20:13 +0000)]
Add current binary and source directories to the header search list
for all compiler invocations.

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

13 years agorevert my ConstantVector patch, it seems to have made the llvm-gcc
Chris Lattner [Mon, 14 Feb 2011 18:15:46 +0000 (18:15 +0000)]
revert my ConstantVector patch, it seems to have made the llvm-gcc
builders unhappy.

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

13 years agoAdd the ClangSACheckersEmitter tablegen backend which will be used for the clang...
Argyrios Kyrtzidis [Mon, 14 Feb 2011 17:58:52 +0000 (17:58 +0000)]
Add the ClangSACheckersEmitter tablegen backend which will be used for the clang static analyzer.

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

13 years agoMove broken HasCommonSymbols to ELFWriter.cpp.
Rafael Espindola [Mon, 14 Feb 2011 16:51:08 +0000 (16:51 +0000)]
Move broken HasCommonSymbols to ELFWriter.cpp.

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

13 years agoFix encoding and add parsing support for the arm/thumb CPS instruction:
Bruno Cardoso Lopes [Mon, 14 Feb 2011 13:09:44 +0000 (13:09 +0000)]
Fix encoding and add parsing support for the arm/thumb CPS instruction:
- Add custom operand matching for imod and iflags.
- Rename SplitMnemonicAndCC to SplitMnemonic since it splits more than CC
  from mnemonic.
- While adding ".w" as an operand, don't change "Head" to avoid passing the
  wrong mnemonic to ParseOperand.
- Add asm parser tests.
- Add disassembler tests just to make sure it can catch all cps versions.

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

13 years agoSwitch ConstantVector::get to use ArrayRef instead of a pointer+size
Chris Lattner [Mon, 14 Feb 2011 07:55:32 +0000 (07:55 +0000)]
Switch ConstantVector::get to use ArrayRef instead of a pointer+size
idiom.  Change various clients to simplify their code.

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

13 years agoadd a new ArrayRef class. This is intended to replace the idiom we
Chris Lattner [Mon, 14 Feb 2011 07:35:09 +0000 (07:35 +0000)]
add a new ArrayRef class.  This is intended to replace the idiom we
use in many places where we pass a pointer and size to abstract APIs
that can take C arrays, std::vector, SmallVector, etc.  It is to arrays
what StringRef is to strings.

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

13 years agofix PR9210 by implementing some type legalization logic for
Chris Lattner [Mon, 14 Feb 2011 06:30:45 +0000 (06:30 +0000)]
fix PR9210 by implementing some type legalization logic for
vector fp conversions.

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

13 years agofix two comment thinkos
Chris Lattner [Mon, 14 Feb 2011 06:14:42 +0000 (06:14 +0000)]
fix two comment thinkos

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

13 years agoFix typo in comment.
Nick Lewycky [Mon, 14 Feb 2011 06:14:20 +0000 (06:14 +0000)]
Fix typo in comment.

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

13 years agoAdd some statistics to StrongPHIElimination.
Cameron Zwarich [Mon, 14 Feb 2011 02:09:18 +0000 (02:09 +0000)]
Add some statistics to StrongPHIElimination.

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

13 years agoAdd a statistic to PHIElimination tracking the number of critical edges split.
Cameron Zwarich [Mon, 14 Feb 2011 02:09:11 +0000 (02:09 +0000)]
Add a statistic to PHIElimination tracking the number of critical edges split.

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

13 years agomissed a header
Chris Lattner [Sun, 13 Feb 2011 22:30:09 +0000 (22:30 +0000)]
missed a header

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

13 years agoEnhance ComputeMaskedBits to know that aligned frameindexes
Chris Lattner [Sun, 13 Feb 2011 22:25:43 +0000 (22:25 +0000)]
Enhance ComputeMaskedBits to know that aligned frameindexes
have their low bits set to zero.  This allows us to optimize
out explicit stack alignment code like in stack-align.ll:test4 when
it is redundant.

Doing this causes the code generator to start turning FI+cst into
FI|cst all over the place, which is general goodness (that is the
canonical form) except that various pieces of the code generator
don't handle OR aggressively.  Fix this by introducing a new
SelectionDAG::isBaseWithConstantOffset predicate, and using it
in places that are looking for ADD(X,CST).  The ARM backend in
particular was missing a lot of addressing mode folding opportunities
around OR.

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

13 years agoAdapt docs to '-loopsimplify -> -loop-simplify' change
Tobias Grosser [Sun, 13 Feb 2011 20:57:25 +0000 (20:57 +0000)]
Adapt docs to '-loopsimplify -> -loop-simplify' change

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

13 years agofix thinko :)
Chris Lattner [Sun, 13 Feb 2011 19:53:36 +0000 (19:53 +0000)]
fix thinko :)

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

13 years agoRevisit my fix for PR9028: the issue is that DAGCombine was
Chris Lattner [Sun, 13 Feb 2011 19:09:16 +0000 (19:09 +0000)]
Revisit my fix for PR9028: the issue is that DAGCombine was
generating i8 shift amounts for things like i1024 types.  Add
an assert in getNode to prevent this from occuring in the future,
fix the buggy transformation, revert my previous patch, and
document this gotcha in ISDOpcodes.h

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

13 years agoremove a now-unneccesary cast.
Chris Lattner [Sun, 13 Feb 2011 18:30:09 +0000 (18:30 +0000)]
remove a now-unneccesary cast.

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

13 years agoRemove pointless blank line.
Duncan Sands [Sun, 13 Feb 2011 18:11:05 +0000 (18:11 +0000)]
Remove pointless blank line.

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

13 years agoTeach instsimplify that X+Y>=X+Z is the same as Y>=Z if neither side overflows,
Duncan Sands [Sun, 13 Feb 2011 17:15:40 +0000 (17:15 +0000)]
Teach instsimplify that X+Y>=X+Z is the same as Y>=Z if neither side overflows,
plus some variations of this.  According to my auto-simplifier this occurs a lot
but usually in combination with max/min idioms.  Because max/min aren't handled
yet this unfortunately doesn't have much effect in the testsuite.

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

13 years agoFix test
Nadav Rotem [Sun, 13 Feb 2011 16:13:16 +0000 (16:13 +0000)]
Fix test

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

13 years agoFix a regression from r125393;
Nadav Rotem [Sun, 13 Feb 2011 15:45:34 +0000 (15:45 +0000)]
Fix a regression from r125393;

It caused a crash in MultiSource/Benchmarks/Bullet.
Opt hit an assertion with "opt -std-compile-opts" because
Constant::getAllOnesValue doesn't know how to handle floats.

This patch added a test to reproduce the problem and a check that the
destination vector is of integer type.

Thank you Benjamin!

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

13 years agowhen legalizing extremely wide shifts, make sure that
Chris Lattner [Sun, 13 Feb 2011 09:10:56 +0000 (09:10 +0000)]
when legalizing extremely wide shifts, make sure that
the shift amounts are in a suitably wide type so that
we don't generate out of range constant shift amounts.

This fixes PR9028.

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

13 years agofix visitShift to properly zero extend the shift amount if the provided operand
Chris Lattner [Sun, 13 Feb 2011 09:02:52 +0000 (09:02 +0000)]
fix visitShift to properly zero extend the shift amount if the provided operand
is narrower than the shift register.  Doing an anyext provides undefined bits in
the top part of the register.

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

13 years agoimprove solaris support, from PR9109, patch by Yuri!
Chris Lattner [Sun, 13 Feb 2011 08:38:44 +0000 (08:38 +0000)]
improve solaris support, from PR9109, patch by Yuri!

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

13 years agoadd PR#
Chris Lattner [Sun, 13 Feb 2011 08:27:31 +0000 (08:27 +0000)]
add PR#

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

13 years agoimplement instcombine folding for things like (x >> c) < 42.
Chris Lattner [Sun, 13 Feb 2011 08:07:21 +0000 (08:07 +0000)]
implement instcombine folding for things like (x >> c) < 42.
We were previously simplifying divisions, but not right shifts!

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

13 years agoadd a helper method.
Chris Lattner [Sun, 13 Feb 2011 08:04:16 +0000 (08:04 +0000)]
add a helper method.

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

13 years agoWrap the struct in an anonymous namespace.
Argyrios Kyrtzidis [Sun, 13 Feb 2011 07:51:19 +0000 (07:51 +0000)]
Wrap the struct in an anonymous namespace.

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

13 years agorefactor some code out into a helper method.
Chris Lattner [Sun, 13 Feb 2011 07:43:07 +0000 (07:43 +0000)]
refactor some code out into a helper method.

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

13 years agoteach SCEV that the scale and addition of an inbounds gep don't NSW.
Chris Lattner [Sun, 13 Feb 2011 03:14:49 +0000 (03:14 +0000)]
teach SCEV that the scale and addition of an inbounds gep don't NSW.
This fixes a FIXME in scev-aa.ll (allowing a new no-alias result) and
generally makes things more precise.

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