oota-llvm.git
15 years agofix PR3488: llvm-ar r doesn't replace existing files
Chris Lattner [Thu, 5 Feb 2009 17:58:39 +0000 (17:58 +0000)]
fix PR3488: llvm-ar r doesn't replace existing files

Patch by Daniel Shelton!

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

15 years agoRevert the previous commit. It seems it didn't
Duncan Sands [Thu, 5 Feb 2009 10:21:34 +0000 (10:21 +0000)]
Revert the previous commit.  It seems it didn't
really solve the problem.  Also it changed the
name from libLLVMgold to LLVMgold (correcting
the name resulted in the original problem
suddenly reappearing).

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

15 years agoStop llvm-config thinking that there are circular
Duncan Sands [Thu, 5 Feb 2009 09:54:02 +0000 (09:54 +0000)]
Stop llvm-config thinking that there are circular
dependencies between libraries due to __dso_handle
when doing "make install".  I don't know what the
LINK_COMPONENTS stuff is about, so I left it alone.

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

15 years agoMachine LICM increases register pressure and it almost always increase code size...
Evan Cheng [Thu, 5 Feb 2009 08:51:13 +0000 (08:51 +0000)]
Machine LICM increases register pressure and it almost always increase code size. For now, disable it for optimizing for size.

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

15 years agoTurn on machine LICM in non-fast mode.
Evan Cheng [Thu, 5 Feb 2009 08:46:33 +0000 (08:46 +0000)]
Turn on machine LICM in non-fast mode.

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

15 years agoTeach machine licm to CSE hoisted instructions.
Evan Cheng [Thu, 5 Feb 2009 08:45:46 +0000 (08:45 +0000)]
Teach machine licm to CSE hoisted instructions.

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

15 years agoReMaterializeTrivialDef need to trim the live interval to the last kill if the copy...
Evan Cheng [Thu, 5 Feb 2009 08:45:04 +0000 (08:45 +0000)]
ReMaterializeTrivialDef need to trim the live interval to the last kill if the copy kills the source register. This fixes uint64tof64.ll after ARM::MOVi is marked as isAsCheapAsAMove.

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

15 years agoA few more isAsCheapAsAMove.
Evan Cheng [Thu, 5 Feb 2009 08:42:55 +0000 (08:42 +0000)]
A few more isAsCheapAsAMove.

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

15 years agoClarify comments.
Evan Cheng [Thu, 5 Feb 2009 08:41:53 +0000 (08:41 +0000)]
Clarify comments.

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

15 years agoif we have a large GEP offset on a 32-bit or other target, make
Chris Lattner [Thu, 5 Feb 2009 06:55:21 +0000 (06:55 +0000)]
if we have a large GEP offset on a 32-bit or other target, make
sure to print the value properly sext'd to the right pointer size.
This fixes PR3481.

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

15 years agoPre-alloc splitting needs to be more careful to avoid inserting spills/restores
Owen Anderson [Thu, 5 Feb 2009 05:58:41 +0000 (05:58 +0000)]
Pre-alloc splitting needs to be more careful to avoid inserting spills/restores
between call frame setup/restore points.  Unfortunately, this regresses
code size a bit, but at least it's correct now!

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

15 years agoPR3485, document alignment on byref.
Chris Lattner [Thu, 5 Feb 2009 05:42:28 +0000 (05:42 +0000)]
PR3485, document alignment on byref.

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

15 years agoIt's not obvious, but lto_module_create_from_memory doesn't need to use the
Nick Lewycky [Thu, 5 Feb 2009 05:36:01 +0000 (05:36 +0000)]
It's not obvious, but lto_module_create_from_memory doesn't need to use the
buffer after it creates the Module. Thus, we don't need to store this pointer
in claimed_file.

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

15 years agoFix a bug where we were not emitting a cvt rnd sat node for converting
Mon P Wang [Thu, 5 Feb 2009 04:47:42 +0000 (04:47 +0000)]
Fix a bug where we were not emitting a cvt rnd sat node for converting
between a unsigned integer and signed integer.

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

15 years agoRemove accidentally included debug message!
Nick Lewycky [Thu, 5 Feb 2009 04:14:23 +0000 (04:14 +0000)]
Remove accidentally included debug message!

Reword a comment for clarity. Remove some extra whitespace.

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

15 years agoReapply 63765. Patches for clang and llvm-gcc to follow.
Dale Johannesen [Thu, 5 Feb 2009 01:49:45 +0000 (01:49 +0000)]
Reapply 63765.  Patches for clang and llvm-gcc to follow.

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

15 years agoGet rid of 3 non-DebugLoc getNode variants.
Dale Johannesen [Thu, 5 Feb 2009 01:01:16 +0000 (01:01 +0000)]
Get rid of 3 non-DebugLoc getNode variants.

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

15 years agoIgnore dbg intrinsics while folding switch instruction.
Devang Patel [Thu, 5 Feb 2009 00:30:42 +0000 (00:30 +0000)]
Ignore dbg intrinsics while folding switch instruction.

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

15 years agoRemove non-DebugLoc versions of getMergeValues, ZeroExtendInReg.
Dale Johannesen [Thu, 5 Feb 2009 00:20:09 +0000 (00:20 +0000)]
Remove non-DebugLoc versions of getMergeValues, ZeroExtendInReg.

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

15 years agoRemove non-DebugLoc forms of CopyToReg and CopyFromReg.
Dale Johannesen [Wed, 4 Feb 2009 23:02:30 +0000 (23:02 +0000)]
Remove non-DebugLoc forms of CopyToReg and CopyFromReg.
Adjust callers.

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

15 years agoReverting 63765. This broke the build of both clang
Dale Johannesen [Wed, 4 Feb 2009 22:47:25 +0000 (22:47 +0000)]
Reverting 63765.  This broke the build of both clang
and llvm-gcc.

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

15 years agoIgnore dbg intrinsics.
Devang Patel [Wed, 4 Feb 2009 21:39:48 +0000 (21:39 +0000)]
Ignore dbg intrinsics.

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

15 years agoAdd test case for r63760.
Mon P Wang [Wed, 4 Feb 2009 21:10:56 +0000 (21:10 +0000)]
Add test case for r63760.

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

15 years agoRemove now-incorrect test.
Nate Begeman [Wed, 4 Feb 2009 21:07:37 +0000 (21:07 +0000)]
Remove now-incorrect test.

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

15 years agoAlphabetize includes. Update comment.
Torok Edwin [Wed, 4 Feb 2009 21:00:02 +0000 (21:00 +0000)]
Alphabetize includes. Update comment.

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

15 years ago80 column rule.
Stuart Hastings [Wed, 4 Feb 2009 20:30:10 +0000 (20:30 +0000)]
80 column rule.

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

15 years agoRemove non-DebugLoc versions of getLoad and getStore.
Dale Johannesen [Wed, 4 Feb 2009 20:06:27 +0000 (20:06 +0000)]
Remove non-DebugLoc versions of getLoad and getStore.
Adjust the many callers of those versions.

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

15 years agoNew feature: add support for target intrinsics being defined in the
Nate Begeman [Wed, 4 Feb 2009 19:47:21 +0000 (19:47 +0000)]
New feature: add support for target intrinsics being defined in the
target directories themselves.  This also means that VMCore no longer
needs to know about every target's list of intrinsics.  Future work
will include converting the PowerPC target to this interface as an
example implementation.

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

15 years agoAvoids generating a legalization assert for the case where a vector type is legal
Mon P Wang [Wed, 4 Feb 2009 19:38:14 +0000 (19:38 +0000)]
Avoids generating a legalization assert for the case where a vector type is legal
but when legalizing the operation, we split the vector type and generate a library
call whose type needs to be promoted. For example, X86 with SSE on but MMX off,
a divide v2i64 will be scalarized to 2 calls to a library using i64.

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

15 years agomention that PIC is needed for libLTO and libLLVMgold
Torok Edwin [Wed, 4 Feb 2009 19:12:25 +0000 (19:12 +0000)]
mention that PIC is needed for libLTO and libLLVMgold

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

15 years agoBill implemented this.
Chris Lattner [Wed, 4 Feb 2009 19:09:07 +0000 (19:09 +0000)]
Bill implemented this.

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

15 years agoadd a note, this is why we're faster at SciMark-MonteCarlo with
Chris Lattner [Wed, 4 Feb 2009 19:08:01 +0000 (19:08 +0000)]
add a note, this is why we're faster at SciMark-MonteCarlo with
SSE disabled.

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

15 years agoSkip over zero registers.
Evan Cheng [Wed, 4 Feb 2009 18:18:58 +0000 (18:18 +0000)]
Skip over zero registers.

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

15 years agoallow main to have any integer type.
Chris Lattner [Wed, 4 Feb 2009 17:48:18 +0000 (17:48 +0000)]
allow main to have any integer type.

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

15 years agoremove printf - it was there only for debugging!
Torok Edwin [Wed, 4 Feb 2009 17:40:28 +0000 (17:40 +0000)]
remove printf - it was there only for debugging!

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

15 years agoadd support for .a files containing LLVM IR to the gold plugin
Torok Edwin [Wed, 4 Feb 2009 17:39:30 +0000 (17:39 +0000)]
add support for .a files containing LLVM IR to the gold plugin

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

15 years agoMinor code cleanups; no functionality change.
Dan Gohman [Wed, 4 Feb 2009 17:28:58 +0000 (17:28 +0000)]
Minor code cleanups; no functionality change.

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

15 years agoSince I'm obliged to work with a development OS that currently doesn't
Stuart Hastings [Wed, 4 Feb 2009 16:46:19 +0000 (16:46 +0000)]
Since I'm obliged to work with a development OS that currently doesn't
support GraphViz, I've been using the foo->dump() facility.  This
patch is a minor rewrite to the SelectionDAG dump() stuff to make it a
little more helpful.  The existing foo->dump() functionality does not
change; this patch adds foo->dumpr().  All of this is only useful when
running LLVM under a debugger.

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

15 years agoAllow the inverse transform x86_fp80 -> i80 (also
Duncan Sands [Wed, 4 Feb 2009 11:17:06 +0000 (11:17 +0000)]
Allow the inverse transform x86_fp80 -> i80 (also
fires during the Ada build).

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

15 years agoFix PR3468: a crash when constant folding a bitcast of
Duncan Sands [Wed, 4 Feb 2009 10:17:14 +0000 (10:17 +0000)]
Fix PR3468: a crash when constant folding a bitcast of
i80 to x86 long double (this was presumably generated
by sroa).

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

15 years agoDon't call isInvariantLoad twice.
Evan Cheng [Wed, 4 Feb 2009 09:21:58 +0000 (09:21 +0000)]
Don't call isInvariantLoad twice.

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

15 years agoDon't bother hoisting out a "cheap" instruction if all of its uses are PHIs. LICM...
Evan Cheng [Wed, 4 Feb 2009 09:19:56 +0000 (09:19 +0000)]
Don't bother hoisting out a "cheap" instruction if all of its uses are PHIs. LICM "cheap" instructions are not particularly beneficial to start with. This will just end up making the copies harder to coalesce.

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

15 years agoFor now, only hoist re-materilizable instructions. LICM will increase register pressu...
Evan Cheng [Wed, 4 Feb 2009 07:17:49 +0000 (07:17 +0000)]
For now, only hoist re-materilizable instructions. LICM will increase register pressure. We want to avoid spilling more instructions if it's possible.

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

15 years agoRegenerate.
Nick Lewycky [Wed, 4 Feb 2009 06:27:44 +0000 (06:27 +0000)]
Regenerate.

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

15 years agoReapply patch from r62553, with a fix to avoid looking for an ffi.h that isn't
Nick Lewycky [Wed, 4 Feb 2009 06:26:47 +0000 (06:26 +0000)]
Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn't
there.

This changes the interpreter to use libffi. After this patch, the interpreter
will barely be able to call any external functions if built on a system without
libffi installed (just enough to pass 'make check' really). But with libffi,
we can now call any function that isn't variadic or taking a struct or vector
parameter (but pointer to struct is fine). Patch by Alexei Svitkine!

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

15 years agoFinish making AliasAnalysis aware of the fact that most atomic intrinsics only derefe...
Owen Anderson [Wed, 4 Feb 2009 05:16:46 +0000 (05:16 +0000)]
Finish making AliasAnalysis aware of the fact that most atomic intrinsics only dereference their arguments, and enhance
BasicAA to make use of this fact when computing ModRef info.

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

15 years agoRemove non-DebugLoc forms of the exotic forms
Dale Johannesen [Wed, 4 Feb 2009 02:34:38 +0000 (02:34 +0000)]
Remove non-DebugLoc forms of the exotic forms
of Lod and Sto; patch uses.

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

15 years agofix a pretty serious bug in StringMap where GetOrCreate(strstart,strend, z)
Chris Lattner [Wed, 4 Feb 2009 01:54:10 +0000 (01:54 +0000)]
fix a pretty serious bug in StringMap where GetOrCreate(strstart,strend, z)
would not set new values to Z.

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

15 years agoadd a friend needed by a stringmap change.
Chris Lattner [Wed, 4 Feb 2009 01:51:53 +0000 (01:51 +0000)]
add a friend needed by a stringmap change.

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

15 years agoRemove some more non-DebugLoc versions of construction
Dale Johannesen [Wed, 4 Feb 2009 01:48:28 +0000 (01:48 +0000)]
Remove some more non-DebugLoc versions of construction
functions, with callers adjusted to fit.

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

15 years agoCheck in file I forgot.
Dale Johannesen [Wed, 4 Feb 2009 01:33:20 +0000 (01:33 +0000)]
Check in file I forgot.

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

15 years agoRemove a few non-DebugLoc versions of node creation
Dale Johannesen [Wed, 4 Feb 2009 01:17:06 +0000 (01:17 +0000)]
Remove a few non-DebugLoc versions of node creation
functions.

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

15 years agoFixes a case where we generate an incorrect mask for pshfhw in the presence
Mon P Wang [Wed, 4 Feb 2009 01:16:59 +0000 (01:16 +0000)]
Fixes a case where we generate an incorrect mask for pshfhw in the presence
of undefs and incorrectly determining if we have punpckldq.

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

15 years agoWhile folding vallue comparison terminators ignore dbg intrinsics.
Devang Patel [Wed, 4 Feb 2009 01:06:11 +0000 (01:06 +0000)]
While folding vallue comparison terminators ignore dbg intrinsics.

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

15 years agoPatch up omissions in DebugLoc propagation.
Dale Johannesen [Wed, 4 Feb 2009 00:33:20 +0000 (00:33 +0000)]
Patch up omissions in DebugLoc propagation.

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

15 years agoFill in more omissions in DebugLog propagation.
Dale Johannesen [Wed, 4 Feb 2009 00:13:36 +0000 (00:13 +0000)]
Fill in more omissions in DebugLog propagation.
I think that's it for this directory.

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

15 years agoConstify and don't return a reference.
Bill Wendling [Wed, 4 Feb 2009 00:05:34 +0000 (00:05 +0000)]
Constify and don't return a reference.

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

15 years agoIgnore dbg intrinsics while hoisting common code in the two blocks up into the branch...
Devang Patel [Wed, 4 Feb 2009 00:03:08 +0000 (00:03 +0000)]
Ignore dbg intrinsics while hoisting common code in the two blocks up into the branch block.

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

15 years agoDebugLoc propagation; adjustment to things omitted
Dale Johannesen [Tue, 3 Feb 2009 23:04:43 +0000 (23:04 +0000)]
DebugLoc propagation; adjustment to things omitted
from SelectionDagBuild.

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

15 years agoErm. Would be nice to initialize this variable. . .
Bill Wendling [Tue, 3 Feb 2009 22:55:54 +0000 (22:55 +0000)]
Erm. Would be nice to initialize this variable. . .

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

15 years agoAdd getDebugLocTuple to retrieve the DebugLocTuple for a given DebugLoc object.
Bill Wendling [Tue, 3 Feb 2009 22:49:58 +0000 (22:49 +0000)]
Add getDebugLocTuple to retrieve the DebugLocTuple for a given DebugLoc object.

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

15 years agoAdd getter for the index.
Bill Wendling [Tue, 3 Feb 2009 22:49:14 +0000 (22:49 +0000)]
Add getter for the index.

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

15 years agoNeed this file too.
Dale Johannesen [Tue, 3 Feb 2009 22:26:34 +0000 (22:26 +0000)]
Need this file too.

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

15 years agoAdd some DL propagation to places that didn't
Dale Johannesen [Tue, 3 Feb 2009 22:26:09 +0000 (22:26 +0000)]
Add some DL propagation to places that didn't
have it yet.  More coming.

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

15 years agoDo not let dbg intrinsic block folding of two entry phi node.
Devang Patel [Tue, 3 Feb 2009 22:12:02 +0000 (22:12 +0000)]
Do not let dbg intrinsic block folding of two entry phi node.

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

15 years agoIf "optimize for size" attribute is set then block non-trivial loop unswitches but...
Devang Patel [Tue, 3 Feb 2009 22:04:27 +0000 (22:04 +0000)]
If "optimize for size" attribute is set then block non-trivial loop unswitches but allow trivial loop unswitches.

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

15 years agoDebugLoc propgation
Dale Johannesen [Tue, 3 Feb 2009 21:48:12 +0000 (21:48 +0000)]
DebugLoc propgation

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

15 years agoMore whitespace fixin'.
Bill Wendling [Tue, 3 Feb 2009 21:38:21 +0000 (21:38 +0000)]
More whitespace fixin'.

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

15 years agoWhitespace and comment changes. No functionality change.
Bill Wendling [Tue, 3 Feb 2009 21:17:20 +0000 (21:17 +0000)]
Whitespace and comment changes. No functionality change.

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

15 years agoteach "convert from scalar" to handle loads of fca's.
Chris Lattner [Tue, 3 Feb 2009 21:08:45 +0000 (21:08 +0000)]
teach "convert from scalar" to handle loads of fca's.

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

15 years agorefactor the interface to ConvertUsesOfLoadToScalar,
Chris Lattner [Tue, 3 Feb 2009 21:01:03 +0000 (21:01 +0000)]
refactor the interface to ConvertUsesOfLoadToScalar,
renaming it to ConvertScalar_ExtractValue

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

15 years agoDebugLoc propagation. done with file.
Dale Johannesen [Tue, 3 Feb 2009 20:21:25 +0000 (20:21 +0000)]
DebugLoc propagation.  done with file.

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

15 years agoRemove dead code.
Devang Patel [Tue, 3 Feb 2009 19:46:28 +0000 (19:46 +0000)]
Remove dead code.

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

15 years agoconvert ConvertUsesOfLoadToScalar to use IRBuilder,
Chris Lattner [Tue, 3 Feb 2009 19:45:44 +0000 (19:45 +0000)]
convert ConvertUsesOfLoadToScalar to use IRBuilder,
no functionality change.

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

15 years agoswitch ConvertScalar_InsertValue to use an IRBuilder, no
Chris Lattner [Tue, 3 Feb 2009 19:41:50 +0000 (19:41 +0000)]
switch ConvertScalar_InsertValue to use an IRBuilder, no
functionality change.

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

15 years agoDebugLoc propagation. 2/3 through file.
Dale Johannesen [Tue, 3 Feb 2009 19:33:06 +0000 (19:33 +0000)]
DebugLoc propagation.  2/3 through file.

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

15 years agomake scalar conversion handle stores of first class
Chris Lattner [Tue, 3 Feb 2009 19:30:11 +0000 (19:30 +0000)]
make scalar conversion handle stores of first class
aggregate values.  loads are not yet handled (coming
soon to an sroa near you).

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

15 years agoChange the post-RA scheduler to iterate through the
Dan Gohman [Tue, 3 Feb 2009 18:57:45 +0000 (18:57 +0000)]
Change the post-RA scheduler to iterate through the
basic-block segments bottom-up instead of top down. This
is the first step in a general restructuring of the way
register liveness is tracked in the post-RA scheduler.

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

15 years agoTevert part of the x86 subtarget logic changes: when -march=x86-64
Dan Gohman [Tue, 3 Feb 2009 18:53:21 +0000 (18:53 +0000)]
Tevert part of the x86 subtarget logic changes: when -march=x86-64
is given, override the subtarget settings and enable 64-bit support.
This restores the earlier behavior, and fixes regressions on
Non-64-bit-capable x86-32 hosts.

This isn't necessarily the best approach, but the most obvious
alternative is to require -mcpu=x86-64 or -mattr=+64bit to be used
with -march=x86-64 when the host doesn't have 64-bit support. This
makes things little more consistent, but it's less convenient, and
it has the practical drawback of requiring lots of test changes, so
I opted for the above approach for now.

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

15 years agoFirst initialize DAG otherwise dwarf writer is used uninitialized.
Devang Patel [Tue, 3 Feb 2009 18:46:32 +0000 (18:46 +0000)]
First initialize DAG otherwise dwarf writer is used uninitialized.
Duncan spotted this. Thanks!

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

15 years agoMake SROA produce a vector only when the alloca is actually
Chris Lattner [Tue, 3 Feb 2009 18:15:05 +0000 (18:15 +0000)]
Make SROA produce a vector only when the alloca is actually
accessed at least once as a vector.  This prevents it from
compiling the example in not-a-vector into:

define double @test(double %A, double %B) {
%tmp4 = insertelement <7 x double> undef, double %A, i32 0
%tmp = insertelement <7 x double> %tmp4, double %B, i32 4
%tmp2 = extractelement <7 x double> %tmp, i32 4
ret double %tmp2
}

instead, producing the integer code.  Producing vectors when they
aren't otherwise in the program is dangerous because a lot of other
code treats them carefully and doesn't want to break them down.
OTOH, many things want to break down tasty i448's.

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

15 years agothis produces an undefined result, just check that the alloca is gone
Chris Lattner [Tue, 3 Feb 2009 18:13:00 +0000 (18:13 +0000)]
this produces an undefined result, just check that the alloca is gone
and that sroa doesn't crash.

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

15 years agoFix PR3411. When replacing values, nodes are analyzed
Duncan Sands [Tue, 3 Feb 2009 10:23:33 +0000 (10:23 +0000)]
Fix PR3411.  When replacing values, nodes are analyzed
in any old order.  Since analyzing a node analyzes its
operands also, this can mean that when we pop a node
off the list of nodes to be analyzed, it may already
have been analyzed.

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

15 years agoAPInt'fy SimplifyDemandedVectorElts so it can analyze vectors with more than 64 elements.
Evan Cheng [Tue, 3 Feb 2009 10:05:09 +0000 (10:05 +0000)]
APInt'fy SimplifyDemandedVectorElts so it can analyze vectors with more than 64 elements.

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

15 years agoadd a method to BumpPtrAllocator that allows allocating elements
Chris Lattner [Tue, 3 Feb 2009 07:39:50 +0000 (07:39 +0000)]
add a method to BumpPtrAllocator that allows allocating elements
with a specified alignment.

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

15 years agoAdd LLVM plugin for gold.
Nick Lewycky [Tue, 3 Feb 2009 07:13:24 +0000 (07:13 +0000)]
Add LLVM plugin for gold.

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

15 years agoRegenerate configure.
Nick Lewycky [Tue, 3 Feb 2009 07:10:30 +0000 (07:10 +0000)]
Regenerate configure.

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

15 years agoAdd the ability to pass the path to binutils source to configure. This is
Nick Lewycky [Tue, 3 Feb 2009 07:10:08 +0000 (07:10 +0000)]
Add the ability to pass the path to binutils source to configure. This is
needed to build the LLVM gold plugin.

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

15 years agoadd another case of undefined behavior without crashing, PR3466.
Chris Lattner [Tue, 3 Feb 2009 07:08:57 +0000 (07:08 +0000)]
add another case of undefined behavior without crashing, PR3466.

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

15 years agoRevert r63600. It didn't fix the bug, it just moved it a bit.
Nick Lewycky [Tue, 3 Feb 2009 06:30:37 +0000 (06:30 +0000)]
Revert r63600. It didn't fix the bug, it just moved it a bit.

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

15 years agoTeach AliasAnalysis that a bunch of the atomic intrinsics only dereference their...
Owen Anderson [Tue, 3 Feb 2009 06:27:22 +0000 (06:27 +0000)]
Teach AliasAnalysis that a bunch of the atomic intrinsics only dereference their arguments.

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

15 years agoUpdate the callgraph when replacing InvokeInst with CallInst when inlining.
Nick Lewycky [Tue, 3 Feb 2009 04:34:40 +0000 (04:34 +0000)]
Update the callgraph when replacing InvokeInst with CallInst when inlining.

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

15 years agoExplicitly pass in debug location information to BuildMI.
Bill Wendling [Tue, 3 Feb 2009 02:29:34 +0000 (02:29 +0000)]
Explicitly pass in debug location information to BuildMI.

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

15 years agoPass in something sensible for the debug location information when creating the
Bill Wendling [Tue, 3 Feb 2009 02:20:52 +0000 (02:20 +0000)]
Pass in something sensible for the debug location information when creating the
initial PHI nodes of the machine function.

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

15 years agofix a bitcode reader bug where it can't handle extractelement correctly:
Chris Lattner [Tue, 3 Feb 2009 02:11:28 +0000 (02:11 +0000)]
fix a bitcode reader bug where it can't handle extractelement correctly:
the index of the value being extracted is always an i32.  This fixes PR3465

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

15 years agoTeach ConvertUsesToScalar to handle memset, allowing it to handle
Chris Lattner [Tue, 3 Feb 2009 02:01:43 +0000 (02:01 +0000)]
Teach ConvertUsesToScalar to handle memset, allowing it to handle
crazy cases like:

struct f {  int A, B, C, D, E, F; };
short test4() {
  struct f A;
  A.A = 1;
  memset(&A.B, 2, 12);
  return A.C;
}

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

15 years agoFill in some missing DL propagation in getNode()s.
Dale Johannesen [Tue, 3 Feb 2009 01:55:44 +0000 (01:55 +0000)]
Fill in some missing DL propagation in getNode()s.

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

15 years agoUse SDL->getCurDebugLoc() instead of unknown loc for landing pads.
Bill Wendling [Tue, 3 Feb 2009 01:55:42 +0000 (01:55 +0000)]
Use SDL->getCurDebugLoc() instead of unknown loc for landing pads.

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

15 years agoExplicitly pass in the "unknown" debug location. This is probably not
Bill Wendling [Tue, 3 Feb 2009 01:33:28 +0000 (01:33 +0000)]
Explicitly pass in the "unknown" debug location. This is probably not
correct. We need more infrastructure before we can get the DebugLoc info for
these instructions.

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

15 years agoDelete these two tests. They are specific to x86-64, and there's no
Dan Gohman [Tue, 3 Feb 2009 01:33:26 +0000 (01:33 +0000)]
Delete these two tests. They are specific to x86-64, and there's no
reliable way to do this with the current dejagnu infrastructure.
If someone can figure out how to fix these tests so that they test
what they are intended to test without spuriously failing on any
popular platforms, they are invited to reinstate them.

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