oota-llvm.git
13 years agoDragonegg release notes.
Duncan Sands [Mon, 4 Apr 2011 11:09:08 +0000 (11:09 +0000)]
Dragonegg release notes.

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

13 years agoRemove some support for ReturnInsts with multiple operands, and for
Jay Foad [Mon, 4 Apr 2011 07:44:02 +0000 (07:44 +0000)]
Remove some support for ReturnInsts with multiple operands, and for
returning a scalar value in a function whose return type is a single-
element structure or array.

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

13 years agoRegion: Allow user control the printing style of the print function.
Tobias Grosser [Mon, 4 Apr 2011 07:19:18 +0000 (07:19 +0000)]
Region: Allow user control the printing style of the print function.

Contributed by: etherzhhb@gmail.com

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

13 years agoIntrusiveRefCntPtr: in RefCountedBase and RefCountedBaseVPTR, make
Peter Collingbourne [Mon, 4 Apr 2011 00:57:03 +0000 (00:57 +0000)]
IntrusiveRefCntPtr: in RefCountedBase and RefCountedBaseVPTR, make
ref_cnt mutable and Retain/Release const to enable reference counted
pointers to const objects

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

13 years agoAttempt to fix breakage from r128782 reported by Francois Pichet on
Eli Friedman [Mon, 4 Apr 2011 00:37:38 +0000 (00:37 +0000)]
Attempt to fix breakage from r128782 reported by Francois Pichet on
llvm-commits.  (Not sure why it only breaks on Windows; maybe it has
something to do with the iterator representation...)

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

13 years agoStart migrating mach-o dumping facilities to the object file out of a
Eric Christopher [Sun, 3 Apr 2011 23:51:47 +0000 (23:51 +0000)]
Start migrating mach-o dumping facilities to the object file out of a
separate executable.

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

13 years agoMove Object.cpp out of VMCore and into Object.
Eric Christopher [Sun, 3 Apr 2011 23:07:51 +0000 (23:07 +0000)]
Move Object.cpp out of VMCore and into Object.

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

13 years agoAssorted bugfixes in object file handling:
Eric Christopher [Sun, 3 Apr 2011 22:53:19 +0000 (22:53 +0000)]
Assorted bugfixes in object file handling:

 - Adds support for sniffing PE/COFF files on win32 (.exe and .dll)
   which are COFF files that have an MS-DOS compatibility stub on
   the front of them.

 - Fixes a bug in the COFFObjectFile's support for the Microsoft COFF
   extension for long symbol names, wherein it was attempting to parse
   the leading '/' in an extended symbol name reference as part of the
   integer offset.

 - Fixes bugs in COFFObjectFile and ELFObjectFile wherein section
   and symbol iterators were being returned with uninitialized bytes;
   the type DataRefImpl is a union between 2 32-bit words (d.a and d.b)
   and a single intptr_t word (p). Only p was being initialized, so in
   32-bit builds the result would be iterators with random upper 32-bit
   words in their DataRefImpls. This caused random failures when
   seeking around in object files.

Patch by Graydon Hoare!

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

13 years agoAdd a set of C bindings for the Object interface.
Eric Christopher [Sun, 3 Apr 2011 22:34:07 +0000 (22:34 +0000)]
Add a set of C bindings for the Object interface.

Patch by Patrick Walton!

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

13 years agoRemove the LLVMContext& arguments from *Folder constructors, as they don't seem to...
Frits van Bommel [Sun, 3 Apr 2011 19:46:28 +0000 (19:46 +0000)]
Remove the LLVMContext& arguments from *Folder constructors, as they don't seem to be used anywhere.

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

13 years agoFix typos on LLVM.cmake. Export LLVM_ON_UNIX & LLVM_ON_WIN32.
Oscar Fuentes [Sun, 3 Apr 2011 16:12:38 +0000 (16:12 +0000)]
Fix typos on LLVM.cmake. Export LLVM_ON_UNIX & LLVM_ON_WIN32.

Patch by arrowdodger!

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

13 years agoPR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction
Eli Friedman [Sat, 2 Apr 2011 22:45:17 +0000 (22:45 +0000)]
PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction
after the given instruction; make sure to handle that case correctly.
(It's difficult to trigger; the included testcase involves a dead
block, but I don't think that's a requirement.)

While I'm here, get rid of the unnecessary warning about
SimplifyInstructionsInBlock, since it should work correctly as far as I know.

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

13 years agoDon't assume something which might be a constant expression is an instruction.
Eli Friedman [Sat, 2 Apr 2011 22:11:56 +0000 (22:11 +0000)]
Don't assume something which might be a constant expression is an instruction.
Based on PR9429, but no testcase because I can't figure out how to trigger it
anymore given other changes to the relevant code.

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

13 years agoWhile SimplifyDemandedBits constant folds this, we can't rely on it here.
Benjamin Kramer [Sat, 2 Apr 2011 18:50:58 +0000 (18:50 +0000)]
While SimplifyDemandedBits constant folds this, we can't rely on it here.

It's possible to craft an input that hits the recursion limits in a way
that SimplifyDemandedBits doesn't simplify the icmp but ComputeMaskedBits
can infer which bits are zero.

No test case as it depends on too many other things. Fixes PR9609.

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

13 years agoHandle changing of LLVM_ENABLE_FFI.
Oscar Fuentes [Sat, 2 Apr 2011 13:21:12 +0000 (13:21 +0000)]
Handle changing of LLVM_ENABLE_FFI.

If someone first configure build with LLVM_ENABLE_FFI=1 and then turn it
off, the build will fail in lib/ExecutionEngine/Interpreter because
Interpreter will try still to #include <ffi/ffi.h>, but there are no
include_directories(${FFI_INCLUDE_DIR}) now.

This patch unset()'s HAVE_FFI_H and HAVE_FFI_FFI_H from cache file if
LLVM_ENABLE_FFI=0. This forces CMake to update config.h.

Patch by arrowdodger!

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

13 years agoptx: support setp's 4-operand format
Che-Liang Chiou [Sat, 2 Apr 2011 08:51:39 +0000 (08:51 +0000)]
ptx: support setp's 4-operand format

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

13 years agoUse InterferenceCache in RegAllocGreedy.
Jakob Stoklund Olesen [Sat, 2 Apr 2011 06:03:38 +0000 (06:03 +0000)]
Use InterferenceCache in RegAllocGreedy.

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

13 years agoAdd an InterferenceCache class for caching per-block interference ranges.
Jakob Stoklund Olesen [Sat, 2 Apr 2011 06:03:35 +0000 (06:03 +0000)]
Add an InterferenceCache class for caching per-block interference ranges.

When the greedy register allocator is splitting multiple global live ranges, it
tends to look at the same interference data many times. The InterferenceCache
class caches queries for unaltered LiveIntervalUnions.

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

13 years agoUse basic block numbers as indexes when mapping slot index ranges.
Jakob Stoklund Olesen [Sat, 2 Apr 2011 06:03:31 +0000 (06:03 +0000)]
Use basic block numbers as indexes when mapping slot index ranges.

This is more compact and faster than using DenseMap.

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

13 years agoDo some peephole optimizations to remove pointless VMOVs from Neon to integer
Cameron Zwarich [Sat, 2 Apr 2011 02:40:43 +0000 (02:40 +0000)]
Do some peephole optimizations to remove pointless VMOVs from Neon to integer
registers that arise from argument shuffling with the soft float ABI. These
instructions are particularly slow on Cortex A8. This fixes one half of
<rdar://problem/8674845>.

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

13 years agoAdd a RemoveFromWorklist method to DCI. This is needed to do some complicated
Cameron Zwarich [Sat, 2 Apr 2011 02:40:26 +0000 (02:40 +0000)]
Add a RemoveFromWorklist method to DCI. This is needed to do some complicated
transformations in target-specific DAG combines without causing DAGCombiner to
delete the same node twice. If you know of a better way to avoid this (see my
next patch for an example), please let me know.

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

13 years agoFixed a bug in disassembly of STR_POST, where the immediate is the second operand...
Johnny Chen [Sat, 2 Apr 2011 02:24:54 +0000 (02:24 +0000)]
Fixed a bug in disassembly of STR_POST, where the immediate is the second operand in am2offset;
instead of the second operand in addrmode_imm12.

rdar://problem/9225289

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

13 years agoUndo changes mistakenly made in revision 128750.
Akira Hatanaka [Sat, 2 Apr 2011 00:26:12 +0000 (00:26 +0000)]
Undo changes mistakenly made in revision 128750.

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

13 years agoInsert space before ';' to prevent warnings.
Akira Hatanaka [Sat, 2 Apr 2011 00:15:58 +0000 (00:15 +0000)]
Insert space before ';' to prevent warnings.

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

13 years agoFixed MOVr for "should be" encoding bits for Inst{19-16} = 0b0000.
Johnny Chen [Fri, 1 Apr 2011 23:30:25 +0000 (23:30 +0000)]
Fixed MOVr for "should be" encoding bits for Inst{19-16} = 0b0000.

rdar://problem/9224276

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

13 years agoMOVs should have Inst{19-16} as 0b0000, otherwise, the instruction is UNPREDICTABLE.
Johnny Chen [Fri, 1 Apr 2011 23:15:50 +0000 (23:15 +0000)]
MOVs should have Inst{19-16} as 0b0000, otherwise, the instruction is UNPREDICTABLE.

rdar://problem/9224120

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

13 years agoFix the instruction table entries for AI1_adde_sube_s_irs multiclass definition so...
Johnny Chen [Fri, 1 Apr 2011 22:32:51 +0000 (22:32 +0000)]
Fix the instruction table entries for AI1_adde_sube_s_irs multiclass definition so that
all the instruction have:

    let Inst{31-27} = 0b1110; // non-predicated

Before, the ARM decoder was confusing:

> 0x40 0xf3 0xb8 0x80

as:

Opcode=16 Name=ADCSSrs Format=ARM_FORMAT_DPSOREGFRM(5)
 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0
-------------------------------------------------------------------------------------------------
| 1: 0: 0: 0| 0: 0: 0: 0| 1: 0: 1: 1| 1: 0: 0: 0| 1: 1: 1: 1| 0: 0: 1: 1| 0: 1: 0: 0| 0: 0: 0: 0|
-------------------------------------------------------------------------------------------------

adcs pc, r8, r0, asr #6

since the cond field for ADCSSrs is a wild card, and so is ADCrs, with the ADCSSrs having Inst{20} as '1'.

Now, the AR decoder behaves correctly:

> 0x40 0xf3 0xb8 0x80
> END
Executing command: /Volumes/data/lldb/llvm/Debug+Asserts/bin/llvm-mc -disassemble -triple=arm-apple-darwin -debug-only=arm-disassembler mc-input.txt

Opcode=19 Name=ADCrs Format=ARM_FORMAT_DPSOREGFRM(5)
 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0
-------------------------------------------------------------------------------------------------
| 1: 0: 0: 0| 0: 0: 0: 0| 1: 0: 1: 1| 1: 0: 0: 0| 1: 1: 1: 1| 0: 0: 1: 1| 0: 1: 0: 0| 0: 0: 0: 0|
-------------------------------------------------------------------------------------------------

adcshi pc, r8, r0, asr #6
>

rdar://problem/9223094

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

13 years agoFix comment.
Benjamin Kramer [Fri, 1 Apr 2011 22:29:18 +0000 (22:29 +0000)]
Fix comment.

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

13 years agoTweaks to the icmp+sext-to-shifts optimization to address Frits' comments:
Benjamin Kramer [Fri, 1 Apr 2011 22:22:11 +0000 (22:22 +0000)]
Tweaks to the icmp+sext-to-shifts optimization to address Frits' comments:

- Localize the check if an icmp has one use to a place where we know we're
  introducing something that's likely more expensive than a sext from i1.
- Add an assert to make sure a case that would lead to a miscompilation is
  folded away earlier.
- Fix a typo.

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

13 years agoAvoid de-referencing pass beginning of a basic block. No small test case possible...
Evan Cheng [Fri, 1 Apr 2011 22:09:28 +0000 (22:09 +0000)]
Avoid de-referencing pass beginning of a basic block. No small test case possible. rdar://9216009

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

13 years agoRemove redundant code. There are assignments to variables Base and Offset right after...
Akira Hatanaka [Fri, 1 Apr 2011 21:56:02 +0000 (21:56 +0000)]
Remove redundant code. There are assignments to variables Base and Offset right after the code that is removed.

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

13 years agoSimplifies logic for printing target flags.
Akira Hatanaka [Fri, 1 Apr 2011 21:41:06 +0000 (21:41 +0000)]
Simplifies logic for printing target flags.

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

13 years agoCMake: remove debug code from previous commit.
Oscar Fuentes [Fri, 1 Apr 2011 21:39:38 +0000 (21:39 +0000)]
CMake: remove debug code from previous commit.

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

13 years agoWhen the architecture is explicitly armv6 or thumbv6, we need to mark the object...
Owen Anderson [Fri, 1 Apr 2011 21:07:39 +0000 (21:07 +0000)]
When the architecture is explicitly armv6 or thumbv6, we need to mark the object file appropriately.

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

13 years agoLDRD/STRD instructions should print both Rt and Rt2 in the asm string.
Jim Grosbach [Fri, 1 Apr 2011 20:26:57 +0000 (20:26 +0000)]
LDRD/STRD instructions should print both Rt and Rt2 in the asm string.

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

13 years agotlbgen/MC: StringRef's to temporary objects considered harmful.
Daniel Dunbar [Fri, 1 Apr 2011 20:23:52 +0000 (20:23 +0000)]
tlbgen/MC: StringRef's to temporary objects considered harmful.

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

13 years agoFix a LDRT/LDRBT decoding bug where for Encoding A2, if Inst{4} != 0, we should rejec...
Johnny Chen [Fri, 1 Apr 2011 20:21:38 +0000 (20:21 +0000)]
Fix a LDRT/LDRBT decoding bug where for Encoding A2, if Inst{4} != 0, we should reject the instruction
as invalid.

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

13 years agoFix build.
Benjamin Kramer [Fri, 1 Apr 2011 20:15:16 +0000 (20:15 +0000)]
Fix build.

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

13 years agoInstCombine: Turn icmp + sext into bitwise/integer ops when the input has only one...
Benjamin Kramer [Fri, 1 Apr 2011 20:09:10 +0000 (20:09 +0000)]
InstCombine: Turn icmp + sext into bitwise/integer ops when the input has only one unknown bit.

int test1(unsigned x) { return (x&8) ? 0 : -1; }
int test3(unsigned x) { return (x&8) ? -1 : 0; }

before (x86_64):
_test1:
andl $8, %edi
cmpl $1, %edi
sbbl %eax, %eax
ret
_test3:
andl $8, %edi
cmpl $1, %edi
sbbl %eax, %eax
notl %eax
ret

after:
_test1:
shrl $3, %edi
andl $1, %edi
leal -1(%rdi), %eax
ret
_test3:
shll $28, %edi
movl %edi, %eax
sarl $31, %eax
ret

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

13 years agoInstCombine: Move (sext icmp) transforms into their own method. No intended functiona...
Benjamin Kramer [Fri, 1 Apr 2011 20:09:03 +0000 (20:09 +0000)]
InstCombine: Move (sext icmp) transforms into their own method. No intended functionality change.

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

13 years agoAdd comments.
Evan Cheng [Fri, 1 Apr 2011 19:57:01 +0000 (19:57 +0000)]
Add comments.

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

13 years agoAssign node order numbers to results of call instruction lowering. This should improv...
Evan Cheng [Fri, 1 Apr 2011 19:42:22 +0000 (19:42 +0000)]
Assign node order numbers to results of call instruction lowering. This should improve src line debug info when sdisel is used. rdar://9199118

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

13 years agoFix assignment of -fPIC to CMAKE_C_FLAGS. Configure llvm-config.in.in
Oscar Fuentes [Fri, 1 Apr 2011 19:36:06 +0000 (19:36 +0000)]
Fix assignment of -fPIC to CMAKE_C_FLAGS. Configure llvm-config.in.in
with the contents of CMAKE_C(XX)_FLAGS too, else `llvm-config
--c(xx)flags' doesn't tell the absolute truth.

This comes from PR9603 and is based on a patch by Ryuta Suzuki!

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

13 years agoModifies MipsAsmPrinter::isBlockOnlyReachableByFallthrough so that it handles delay...
Akira Hatanaka [Fri, 1 Apr 2011 18:57:38 +0000 (18:57 +0000)]
Modifies MipsAsmPrinter::isBlockOnlyReachableByFallthrough so that it handles delay slots correctly.

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

13 years agoFix LDRi12 immediate operand, which was changed to be the second operand in $addrmode...
Johnny Chen [Fri, 1 Apr 2011 18:26:38 +0000 (18:26 +0000)]
Fix LDRi12 immediate operand, which was changed to be the second operand in $addrmode_imm12 => (ops GPR:$base, i32imm:$offsimm).

rdar://problem/9219356

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

13 years agoUpdate CMakeLists.txt
Devang Patel [Fri, 1 Apr 2011 18:03:58 +0000 (18:03 +0000)]
Update CMakeLists.txt
Patch by arrowdoger.

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

13 years agoAdd code for analyzing FP branches. Clean up branch Analysis functions.
Akira Hatanaka [Fri, 1 Apr 2011 17:39:08 +0000 (17:39 +0000)]
Add code for analyzing FP branches. Clean up branch Analysis functions.

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

13 years agoInitialize HasVMLxForwarding.
Benjamin Kramer [Fri, 1 Apr 2011 09:20:31 +0000 (09:20 +0000)]
Initialize HasVMLxForwarding.

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

13 years agoVarious Instructions' resizeOperands() methods are only used to grow the
Jay Foad [Fri, 1 Apr 2011 08:00:58 +0000 (08:00 +0000)]
Various Instructions' resizeOperands() methods are only used to grow the
list of operands. Simplify and rename them accordingly.

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

13 years agoAdd test case.
Evan Cheng [Fri, 1 Apr 2011 06:27:25 +0000 (06:27 +0000)]
Add test case.

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

13 years agoFileCheck'ify test.
Evan Cheng [Fri, 1 Apr 2011 03:36:33 +0000 (03:36 +0000)]
FileCheck'ify test.

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

13 years agoWhile testing dragonegg I noticed that isCastable and getCastOpcode
Duncan Sands [Fri, 1 Apr 2011 03:34:54 +0000 (03:34 +0000)]
While testing dragonegg I noticed that isCastable and getCastOpcode
had gotten out of sync: isCastable didn't think it was possible to
cast the x86_mmx type to anything, while it did think it possible
to cast an i64 to x86_mmx.

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

13 years agoAdd annotations to tablegen-generated processor itineraries, or replace them with...
Andrew Trick [Fri, 1 Apr 2011 02:22:47 +0000 (02:22 +0000)]
Add annotations to tablegen-generated processor itineraries, or replace them with something meaningful. I want to be able to read and debug the generated tables.

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

13 years agowhitespace
Andrew Trick [Fri, 1 Apr 2011 01:56:55 +0000 (01:56 +0000)]
whitespace

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

13 years agoIssue libcalls __udivmod*i4 / __divmod*i4 for div / rem pairs.
Evan Cheng [Fri, 1 Apr 2011 00:42:02 +0000 (00:42 +0000)]
Issue libcalls __udivmod*i4 / __divmod*i4 for div / rem pairs.

rdar://8911343

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

13 years agoRemove unused variables
Matt Beaumont-Gay [Fri, 1 Apr 2011 00:06:01 +0000 (00:06 +0000)]
Remove unused variables

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

13 years agoFix Thumb and Thumb2 tests to be register allocator independent.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 23:31:50 +0000 (23:31 +0000)]
Fix Thumb and Thumb2 tests to be register allocator independent.

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

13 years agoApply again changes to support ARM memory asm parsing. I removed
Bruno Cardoso Lopes [Thu, 31 Mar 2011 23:26:08 +0000 (23:26 +0000)]
Apply again changes to support ARM memory asm parsing. I removed
all LDR/STR changes and left them to a future patch. Passing all
checks now.

- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and
  fix the encoding wherever is possible.
- Add a new encoding bit to describe the index mode used and teach
  printAddrMode2Operand to check by the addressing mode which index
  mode to print.
- Testcases

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

13 years agoThe basic register allocator must also use the inline spiller.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 23:02:17 +0000 (23:02 +0000)]
The basic register allocator must also use the inline spiller.

It is using a trivial rewriter that doesn't know how to insert spill code
requested by the standard spiller.

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

13 years agoProvide a legal pointer register class when targeting thumb1.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 23:02:15 +0000 (23:02 +0000)]
Provide a legal pointer register class when targeting thumb1.

The LocalStackSlotAllocation pass was creating illegal registers.

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

13 years agoFix SystemZ tests
Jakob Stoklund Olesen [Thu, 31 Mar 2011 23:02:12 +0000 (23:02 +0000)]
Fix SystemZ tests

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

13 years agoInstcombile optimization: extractelement(cast) -> cast(extractelement)
Nadav Rotem [Thu, 31 Mar 2011 22:57:29 +0000 (22:57 +0000)]
Instcombile optimization: extractelement(cast) -> cast(extractelement)

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

13 years agoFix ARM tests to be register allocator independent.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 22:14:03 +0000 (22:14 +0000)]
Fix ARM tests to be register allocator independent.

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

13 years agoInstCombine: APFloat can't perform arithmetic on PPC double doubles, don't even try.
Benjamin Kramer [Thu, 31 Mar 2011 21:35:49 +0000 (21:35 +0000)]
InstCombine: APFloat can't perform arithmetic on PPC double doubles, don't even try.

Thanks Eli!

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

13 years agoAdd a test case for a malformed LDC/LDC2 instructions with PUDW = 0b0000, which
Johnny Chen [Thu, 31 Mar 2011 20:54:30 +0000 (20:54 +0000)]
Add a test case for a malformed LDC/LDC2 instructions with PUDW = 0b0000, which
amounts to an UNDEFINED instruction.

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

13 years agoDistribute (A + B) * C to (A * C) + (B * C) to make use of NEON multiplier
Evan Cheng [Thu, 31 Mar 2011 19:38:48 +0000 (19:38 +0000)]
Distribute (A + B) * C to (A * C) + (B * C) to make use of NEON multiplier
accumulator forwarding:
vadd d3, d0, d1
vmul d3, d3, d2
=>
vmul d3, d0, d2
vmla d3, d1, d2

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

13 years agoFix single word and unsigned byte data transfer instruction encodings so that
Johnny Chen [Thu, 31 Mar 2011 19:28:35 +0000 (19:28 +0000)]
Fix single word and unsigned byte data transfer instruction encodings so that
Inst{4} = 0.

rdar://problem/9213022

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

13 years agoFix Mips, Sparc, and XCore tests that were dependent on register allocation.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 18:42:43 +0000 (18:42 +0000)]
Fix Mips, Sparc, and XCore tests that were dependent on register allocation.

Add an extra run with -regalloc=basic to keep them honest.

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

13 years agoAdded support for FP conditional move instructions and fixed bugs in handling of...
Akira Hatanaka [Thu, 31 Mar 2011 18:26:17 +0000 (18:26 +0000)]
Added support for FP conditional move instructions and fixed bugs in handling of FP comparisons.

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

13 years agoPick better examples. "fpext float 3.1415 to double" won't parse because 3.1415
Nick Lewycky [Thu, 31 Mar 2011 18:20:19 +0000 (18:20 +0000)]
Pick better examples. "fpext float 3.1415 to double" won't parse because 3.1415
isn't an exact float. Also "fpext float 1.0 to float" is invalid IR because
it's not performing an extension.

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

13 years agoDon't completely eliminate identity copies that also modify super register liveness.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 17:55:25 +0000 (17:55 +0000)]
Don't completely eliminate identity copies that also modify super register liveness.

Turn them into noop KILL instructions instead. This lets the scavenger know when
super-registers are killed and defined.

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

13 years agoAdd BLXi to the instruction table for disassembly purpose.
Johnny Chen [Thu, 31 Mar 2011 17:53:50 +0000 (17:53 +0000)]
Add BLXi to the instruction table for disassembly purpose.
A8.6.23 BLX (immediate)

rdar://problem/9212921

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

13 years agoAllow kill flags on two-address instructions. They are harmless.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 17:52:41 +0000 (17:52 +0000)]
Allow kill flags on two-address instructions. They are harmless.

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

13 years agoMark all uses as <undef> when joining a copy.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 17:23:25 +0000 (17:23 +0000)]
Mark all uses as <undef> when joining a copy.

This way, shrinkToUses() will ignore the instruction that is about to be
deleted, and we avoid leaving invalid live ranges that SplitKit doesn't like.

Fix a misunderstanding in MachineVerifier about <def,undef> operands. The
<undef> flag is valid on def operands where it has the same meaning as <undef>
on a use operand. It only applies to sub-register defines which also read the
full register.

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

13 years agoRemove stray empty test file.
Daniel Dunbar [Thu, 31 Mar 2011 17:01:56 +0000 (17:01 +0000)]
Remove stray empty test file.

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

13 years agoRemove dead code.
Devang Patel [Thu, 31 Mar 2011 16:53:49 +0000 (16:53 +0000)]
Remove dead code.

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

13 years agoRevert r128632 again, until I figure out what break the tests
Bruno Cardoso Lopes [Thu, 31 Mar 2011 15:54:36 +0000 (15:54 +0000)]
Revert r128632 again, until I figure out what break the tests

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

13 years agoFix bug found by valgrind.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 15:14:11 +0000 (15:14 +0000)]
Fix bug found by valgrind.

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

13 years agoAdd XCore intrinsics for initializing / starting / synchronizing threads.
Richard Osborne [Thu, 31 Mar 2011 15:13:13 +0000 (15:13 +0000)]
Add XCore intrinsics for initializing / starting / synchronizing threads.

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

13 years agoReapply r128585 without generating a lib depedency cycle. An updated log:
Bruno Cardoso Lopes [Thu, 31 Mar 2011 14:52:28 +0000 (14:52 +0000)]
Reapply r128585 without generating a lib depedency cycle. An updated log:

- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and
  {STR,LDC}{2}_{PRE,POST} fixing the encoding wherever is possible.
- Move all instructions which use am2offset without a pattern to use
  addrmode2.
- Add a new encoding bit to describe the index mode used and teach
  printAddrMode2Operand to check by the addressing mode which index
  mode to print.
- Testcases

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

13 years agoFix whitespace.
Michael J. Spencer [Thu, 31 Mar 2011 13:06:39 +0000 (13:06 +0000)]
Fix whitespace.

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

13 years agoSwitch FileRemover from PathV1 to V2.
Michael J. Spencer [Thu, 31 Mar 2011 13:04:19 +0000 (13:04 +0000)]
Switch FileRemover from PathV1 to V2.

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

13 years agolib/CodeGen/LiveIntervalAnalysis.cpp: [PR9590] Don't use std::pow(float,float) here.
NAKAMURA Takumi [Thu, 31 Mar 2011 12:11:33 +0000 (12:11 +0000)]
lib/CodeGen/LiveIntervalAnalysis.cpp: [PR9590] Don't use std::pow(float,float) here.

We don't expect the real "powf()" on some hosts (and powf() would be available on other hosts).
For consistency, std::pow(double,double) may be called instead.
Or, precision issue might attack us, to see unstable regalloc and stack coloring.

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

13 years agoInstCombine: Fix transform to use the swapped predicate.
Benjamin Kramer [Thu, 31 Mar 2011 10:46:03 +0000 (10:46 +0000)]
InstCombine: Fix transform to use the swapped predicate.

Thanks Frits!

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

13 years agoInstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, y
Benjamin Kramer [Thu, 31 Mar 2011 10:12:22 +0000 (10:12 +0000)]
InstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, y

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

13 years agoInstCombine: fold fcmp pred (fneg x), C -> fcmp swap(pred) x, -C
Benjamin Kramer [Thu, 31 Mar 2011 10:12:15 +0000 (10:12 +0000)]
InstCombine: fold fcmp pred (fneg x), C -> fcmp swap(pred) x, -C

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

13 years agoInstCombine: Shrink "fcmp (fpext x), C" to "fcmp x, C" if C can be losslessly convert...
Benjamin Kramer [Thu, 31 Mar 2011 10:12:07 +0000 (10:12 +0000)]
InstCombine: Shrink "fcmp (fpext x), C" to "fcmp x, C" if C can be losslessly converted to the type of x.

Fixes PR9592.

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

13 years agoInstCombine: fold fcmp (fpext x), (fpext y) -> fcmp x, y.
Benjamin Kramer [Thu, 31 Mar 2011 10:11:58 +0000 (10:11 +0000)]
InstCombine: fold fcmp (fpext x), (fpext y) -> fcmp x, y.

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

13 years agoWill not compile without the spec!
Duncan Sands [Thu, 31 Mar 2011 10:03:32 +0000 (10:03 +0000)]
Will not compile without the spec!

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

13 years agoStrip trailing whitespace.
Duncan Sands [Thu, 31 Mar 2011 09:58:51 +0000 (09:58 +0000)]
Strip trailing whitespace.

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

13 years agoTestcase for r128619 (PR9571).
Bill Wendling [Thu, 31 Mar 2011 08:13:57 +0000 (08:13 +0000)]
Testcase for r128619 (PR9571).

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

13 years agoPick a conservative register class when creating a small live range for remat.
Jakob Stoklund Olesen [Thu, 31 Mar 2011 03:54:44 +0000 (03:54 +0000)]
Pick a conservative register class when creating a small live range for remat.

The rematerialized instruction may require a more constrained register class
than the register being spilled. In the test case, the spilled register has been
inflated to the DPR register class, but we are rematerializing a load of the
ssub_0 sub-register which only exists for DPR_VFP2 registers.

The register class is reinflated after spilling, so the conservative choice is
only temporary.

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

13 years agoRevert "- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and"
Matt Beaumont-Gay [Thu, 31 Mar 2011 00:39:16 +0000 (00:39 +0000)]
Revert "- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and"

This revision introduced a dependency cycle, as nlewycky mentioned by email.

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

13 years agoFix typo in generated HTML.
Nick Lewycky [Thu, 31 Mar 2011 00:23:57 +0000 (00:23 +0000)]
Fix typo in generated HTML.

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

13 years agoUse intrinsics for Neon vmull operations. Radar 9208957.
Bob Wilson [Thu, 31 Mar 2011 00:09:35 +0000 (00:09 +0000)]
Use intrinsics for Neon vmull operations.  Radar 9208957.

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

13 years agoSomehow we managed to forget to encode the lane index for a large swathe of NEON...
Owen Anderson [Wed, 30 Mar 2011 23:45:29 +0000 (23:45 +0000)]
Somehow we managed to forget to encode the lane index for a large swathe of NEON instructions.  With this fix, the entire test-suite passes with the Thumb integrated assembler.

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

13 years agoDon't try to create zero-sized stack objects.
Evan Cheng [Wed, 30 Mar 2011 23:44:13 +0000 (23:44 +0000)]
Don't try to create zero-sized stack objects.

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

13 years ago- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and
Bruno Cardoso Lopes [Wed, 30 Mar 2011 23:32:32 +0000 (23:32 +0000)]
- Implement asm parsing support for LDRT, LDRBT, STRT, STRBT and
  {STR,LDC}{2}_PRE.
- Fixed the encoding in some places.
- Some of those instructions were using am2offset and now use addrmode2.
Codegen isn't affected, instructions which use SelectAddrMode2Offset were not
touched.
- Teach printAddrMode2Operand to check by the addressing mode which index
mode to print.
- This is a work in progress, more work to come. The idea is to change places
which use am2offset to use addrmode2 instead, as to unify assembly parser.
- Add testcases for assembly parser

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

13 years agoAdd a ARM-specific SD node for VBSL so that forms with a constant first operand
Cameron Zwarich [Wed, 30 Mar 2011 23:01:21 +0000 (23:01 +0000)]
Add a ARM-specific SD node for VBSL so that forms with a constant first operand
can be recognized. This fixes <rdar://problem/9183078>.

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

13 years agoTidy up. Whitespace and 80-columns.
Jim Grosbach [Wed, 30 Mar 2011 22:38:13 +0000 (22:38 +0000)]
Tidy up. Whitespace and 80-columns.

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