Jim Laskey [Thu, 5 Oct 2006 15:07:25 +0000 (15:07 +0000)]
Alias analysis code clean ups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30753
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 06:55:50 +0000 (06:55 +0000)]
add a new SimplifyDemandedVectorElts method, which works similarly to
SimplifyDemandedBits. The idea is that some operations can be simplified if
not all of the computed elements are needed. Some targets (like x86) have a
large number of intrinsics that operate on a single element, but pass other
elts through unmodified. If those other elements are not needed, the
intrinsics can be simplified to scalar operations, and insertelement ops can
be removed.
This turns (f.e.):
ushort %Convert_sse(float %f) {
%tmp = insertelement <4 x float> undef, float %f, uint 0 ; <<4 x float>> [#uses=1]
%tmp10 = insertelement <4 x float> %tmp, float 0.
000000e+00, uint 1 ; <<4 x float>> [#uses=1]
%tmp11 = insertelement <4 x float> %tmp10, float 0.
000000e+00, uint 2 ; <<4 x float>> [#uses=1]
%tmp12 = insertelement <4 x float> %tmp11, float 0.
000000e+00, uint 3 ; <<4 x float>> [#uses=1]
%tmp28 = tail call <4 x float> %llvm.x86.sse.sub.ss( <4 x float> %tmp12, <4 x float> < float 1.
000000e+00, float 0.
000000e+00, float 0.
000000e+00, float 0.
000000e+00 > ) ; <<4 x float>> [#uses=1]
%tmp37 = tail call <4 x float> %llvm.x86.sse.mul.ss( <4 x float> %tmp28, <4 x float> < float 5.
000000e-01, float 0.
000000e+00, float 0.
000000e+00, float 0.
000000e+00 > ) ; <<4 x float>> [#uses=1]
%tmp48 = tail call <4 x float> %llvm.x86.sse.min.ss( <4 x float> %tmp37, <4 x float> < float 6.
553500e+04, float 0.
000000e+00, float 0.
000000e+00, float 0.
000000e+00 > ) ; <<4 x float>> [#uses=1]
%tmp59 = tail call <4 x float> %llvm.x86.sse.max.ss( <4 x float> %tmp48, <4 x float> zeroinitializer ) ; <<4 x float>> [#uses=1]
%tmp = tail call int %llvm.x86.sse.cvttss2si( <4 x float> %tmp59 ) ; <int> [#uses=1]
%tmp69 = cast int %tmp to ushort ; <ushort> [#uses=1]
ret ushort %tmp69
}
into:
ushort %Convert_sse(float %f) {
entry:
%tmp28 = sub float %f, 1.
000000e+00 ; <float> [#uses=1]
%tmp37 = mul float %tmp28, 5.
000000e-01 ; <float> [#uses=1]
%tmp375 = insertelement <4 x float> undef, float %tmp37, uint 0 ; <<4 x float>> [#uses=1]
%tmp48 = tail call <4 x float> %llvm.x86.sse.min.ss( <4 x float> %tmp375, <4 x float> < float 6.
553500e+04, float undef, float undef, float undef > ) ; <<4 x float>> [#uses=1]
%tmp59 = tail call <4 x float> %llvm.x86.sse.max.ss( <4 x float> %tmp48, <4 x float> < float 0.
000000e+00, float undef, float undef, float undef > ) ; <<4 x float>> [#uses=1]
%tmp = tail call int %llvm.x86.sse.cvttss2si( <4 x float> %tmp59 ) ; <int> [#uses=1]
%tmp69 = cast int %tmp to ushort ; <ushort> [#uses=1]
ret ushort %tmp69
}
which improves codegen from:
_Convert_sse:
movss LCPI1_0, %xmm0
movss 4(%esp), %xmm1
subss %xmm0, %xmm1
movss LCPI1_1, %xmm0
mulss %xmm0, %xmm1
movss LCPI1_2, %xmm0
minss %xmm0, %xmm1
xorps %xmm0, %xmm0
maxss %xmm0, %xmm1
cvttss2si %xmm1, %eax
andl $65535, %eax
ret
to:
_Convert_sse:
movss 4(%esp), %xmm0
subss LCPI1_0, %xmm0
mulss LCPI1_1, %xmm0
movss LCPI1_2, %xmm1
minss %xmm1, %xmm0
xorps %xmm1, %xmm1
maxss %xmm1, %xmm0
cvttss2si %xmm0, %eax
andl $65535, %eax
ret
This is just a first step, it can be extended in many ways. Testcase here:
Transforms/InstCombine/vec_demanded_elts.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30752
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 06:51:54 +0000 (06:51 +0000)]
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30751
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 06:24:58 +0000 (06:24 +0000)]
Add insertelement/extractelement helper ctors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30750
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 04:11:26 +0000 (04:11 +0000)]
Lower some min/max idioms to minss/maxss when unsafe fp math is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30748
91177308-0d34-0410-b5e6-
96231b3b80d8
Andrew Lenharth [Thu, 5 Oct 2006 03:27:52 +0000 (03:27 +0000)]
Check that jump tables wind up in the rodata section
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30747
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 03:14:23 +0000 (03:14 +0000)]
remove JumpTableTextSection
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30746
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 03:13:59 +0000 (03:13 +0000)]
Don't bother setting JumpTableTextSection, it is about to disappear
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30745
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 03:13:28 +0000 (03:13 +0000)]
Emit pic jumptables to the same section that the function is emitted to,
allowing label differences to work. This fixes CodeGen/X86/pic_jumptable.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30744
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 03:12:36 +0000 (03:12 +0000)]
Verify that jump tables are emitted to the same section as the function is,
when codegen'ing in pic mode. This fixes a miscompilation of a switch stmt
in a template, as the template goes to a non-.text section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30743
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 03:01:21 +0000 (03:01 +0000)]
Pass the MachineFunction into EmitJumpTableInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30742
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:51:36 +0000 (02:51 +0000)]
implement and use getSectionForFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30741
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:49:23 +0000 (02:49 +0000)]
Use getSectionForFunction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30740
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:48:40 +0000 (02:48 +0000)]
Use getSectionForFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30739
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:47:13 +0000 (02:47 +0000)]
use getSectionForFunction to decide which section to emit code into
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30738
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:43:52 +0000 (02:43 +0000)]
Implement getSectionForFunction, use it when printing function body.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30737
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:42:47 +0000 (02:42 +0000)]
move getSectionForFunction to AsmPrinter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30736
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:42:20 +0000 (02:42 +0000)]
Move getSectionForFunction to AsmPrinter, change it to return a string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30735
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 02:41:43 +0000 (02:41 +0000)]
move getSectionForFunction to AsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30734
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 00:35:50 +0000 (00:35 +0000)]
implement DarwinTargetAsmInfo::getSectionForFunction, use it when outputting
function bodies
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30733
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 00:35:16 +0000 (00:35 +0000)]
Give TargetAsmInfo a virtual dtor, add a new getSectionForFunction method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30732
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 00:26:05 +0000 (00:26 +0000)]
emit jump table before debug info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30731
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 5 Oct 2006 00:24:46 +0000 (00:24 +0000)]
Always emit the jump table after the function so it's part of the same 'atom'
as the function body.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30730
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 23:06:26 +0000 (23:06 +0000)]
getFilename/getDirectory shouldn't abort if the global has no init. This
can happen on bugpoint reduced testcases f.e..
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30729
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 4 Oct 2006 22:23:53 +0000 (22:23 +0000)]
Fix some typos that can cause a flag value to have more than one use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30727
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 22:13:11 +0000 (22:13 +0000)]
Fix a static dtor issue
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30726
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 21:52:35 +0000 (21:52 +0000)]
Fix more static dtor issues
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30725
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 21:49:37 +0000 (21:49 +0000)]
Fix some more static dtor issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30724
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 4 Oct 2006 18:33:38 +0000 (18:33 +0000)]
Added option -disable-x86-shuffle-opti to disable X86 specific vector shuffle optimizations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30723
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 4 Oct 2006 18:33:00 +0000 (18:33 +0000)]
Formating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30722
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Wed, 4 Oct 2006 16:53:27 +0000 (16:53 +0000)]
More extensive alias analysis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30721
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Wed, 4 Oct 2006 10:40:15 +0000 (10:40 +0000)]
More long term solution
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30720
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 06:57:07 +0000 (06:57 +0000)]
Pattern match min/max nodes when we have sse. This implements
CodeGen/X86/scalar_sse_minmax.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30719
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 06:56:02 +0000 (06:56 +0000)]
pattern match min/max nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30718
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 05:52:13 +0000 (05:52 +0000)]
add a note :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30717
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 4 Oct 2006 04:58:58 +0000 (04:58 +0000)]
This case isn't implemented yet. It seems unlikely to be needed, but if it
ever is, we want to get an assert instead of silent bad codegen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30716
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Wed, 4 Oct 2006 01:43:13 +0000 (01:43 +0000)]
Work around for some problems with templates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30715
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 4 Oct 2006 00:56:09 +0000 (00:56 +0000)]
Combine ISD::EXTLOAD, ISD::SEXTLOAD, ISD::ZEXTLOAD into ISD::LOADX. Add an
extra operand to LOADX to specify the exact value extension type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30714
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 23:27:09 +0000 (23:27 +0000)]
Use $( $| $) to represent alternatives in asm blocks instead of {|}. This
is needed to support targets where {|} aren't special symbols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30712
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 3 Oct 2006 23:08:27 +0000 (23:08 +0000)]
Fix an obvious typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30711
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 20:19:23 +0000 (20:19 +0000)]
Bugfixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30709
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 20:17:24 +0000 (20:17 +0000)]
Print the MBB ID # along with the bb tag in the -print-machine-instrs output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30708
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 20:16:45 +0000 (20:16 +0000)]
ADd a method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30707
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 19:18:57 +0000 (19:18 +0000)]
Provide a function that ensures MBB numbering is dense and inorder. This
can be used by MachineFunctionPasses who need this property.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30706
91177308-0d34-0410-b5e6-
96231b3b80d8
Nick Lewycky [Tue, 3 Oct 2006 17:36:01 +0000 (17:36 +0000)]
Simplify logic further.
Ensure that we copy KnownProperties before calling visitBasicBlock, else
we may leak properties into blocks where they don't belong.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30705
91177308-0d34-0410-b5e6-
96231b3b80d8
Rafael Espindola [Tue, 3 Oct 2006 17:27:58 +0000 (17:27 +0000)]
Implement floating point constants
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30704
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 17:18:42 +0000 (17:18 +0000)]
Fix PR933 and CodeGen/X86/2006-10-02-BoolRetCrash.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30703
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 17:17:54 +0000 (17:17 +0000)]
testcase for PR933
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30702
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 17:09:12 +0000 (17:09 +0000)]
clean up use of 'explicit'. This is PR934.
Patch contributed by Kevin Sopp!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30701
91177308-0d34-0410-b5e6-
96231b3b80d8
Nick Lewycky [Tue, 3 Oct 2006 15:19:11 +0000 (15:19 +0000)]
Simplify, now that predsimplify depends on break-crit-edges.
Fix SwitchInst where dest-block is the same as one of the cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30700
91177308-0d34-0410-b5e6-
96231b3b80d8
Nick Lewycky [Tue, 3 Oct 2006 14:52:23 +0000 (14:52 +0000)]
Move break-crit-edges before the predicate simplifier. Allows us to
optimize in more cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30699
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 3 Oct 2006 07:26:07 +0000 (07:26 +0000)]
Revert previous patch. Still breaking things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30698
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Tue, 3 Oct 2006 07:20:20 +0000 (07:20 +0000)]
Fix for PR929. The PHI nodes were being gone through for each instruction
in a successor block for every block...resulting in some O(N^k) algorithm
which wasn't very good for performance. Calculating this information up
front and keeping it in a map made it much faster.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30697
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 07:02:02 +0000 (07:02 +0000)]
Fix PR932 and Analysis/Dominators/2006-10-02-BreakCritEdges.ll:
The critical edge block dominates the dest block if the destblock dominates
all edges other than the one incoming from the critical edge.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30696
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 07:00:13 +0000 (07:00 +0000)]
New testcase for PR932
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30695
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 3 Oct 2006 06:55:11 +0000 (06:55 +0000)]
These don't have immediate operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30694
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 3 Oct 2006 05:24:56 +0000 (05:24 +0000)]
Move DominatorTree to immediately follow DominatorTreeBase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30693
91177308-0d34-0410-b5e6-
96231b3b80d8
Rafael Espindola [Mon, 2 Oct 2006 19:30:56 +0000 (19:30 +0000)]
fix the names of the 64bit fp register
initial support for returning 64bit floating point numbers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30692
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 2 Oct 2006 19:10:56 +0000 (19:10 +0000)]
Don't build the runtime library if LLVMGCC is not configured.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30691
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Mon, 2 Oct 2006 17:24:55 +0000 (17:24 +0000)]
fix misleading warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30690
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Mon, 2 Oct 2006 17:23:42 +0000 (17:23 +0000)]
Fix misleading warning message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30689
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Mon, 2 Oct 2006 13:01:17 +0000 (13:01 +0000)]
Debugging kruft
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30688
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Mon, 2 Oct 2006 12:28:07 +0000 (12:28 +0000)]
Update documentaion of node annotation (coloring) in viewGraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30687
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Mon, 2 Oct 2006 12:26:53 +0000 (12:26 +0000)]
Add ability to annotate (color) nodes in a viewGraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30686
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sun, 1 Oct 2006 22:46:33 +0000 (22:46 +0000)]
Fixme is already done
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30685
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sun, 1 Oct 2006 22:36:45 +0000 (22:36 +0000)]
Teach globalsmodref-aa to track scalar pointer global variables which point
to unaliased allocations. Use this information to disambiguate pointers loaded
from them. This is a very common case, so it's worthwhile to handle efficiently.
This implements Analysis/GlobalsModRef/indirect-global.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30684
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sun, 1 Oct 2006 22:35:45 +0000 (22:35 +0000)]
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30683
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sun, 1 Oct 2006 19:40:58 +0000 (19:40 +0000)]
Fix a bug from r1.391 of this file, where we checked the size instead of
the alignment when promoting allocations. This implements
InstCombine/cast.ll:test32
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30682
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sun, 1 Oct 2006 19:39:45 +0000 (19:39 +0000)]
new testcase, malloc should be promoted to [2 x double].
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30681
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 23:32:50 +0000 (23:32 +0000)]
Fix debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30680
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 23:32:09 +0000 (23:32 +0000)]
Implement SRA of heap allocations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30679
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 22:20:34 +0000 (22:20 +0000)]
Override use_back in instruction/basicblock to provide more type information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30678
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 21:31:26 +0000 (21:31 +0000)]
Add a version of the globalvariable ctor that inserts at a specific location.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30677
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 19:40:30 +0000 (19:40 +0000)]
Add some ifdef'd out debug info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30676
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Sat, 30 Sep 2006 00:24:20 +0000 (00:24 +0000)]
Stacker doesn't build universal right.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30675
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Fri, 29 Sep 2006 22:05:10 +0000 (22:05 +0000)]
Not needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30674
91177308-0d34-0410-b5e6-
96231b3b80d8
Rafael Espindola [Fri, 29 Sep 2006 21:20:16 +0000 (21:20 +0000)]
add floating point registers
implement SINT_TO_FP
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30673
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 29 Sep 2006 18:47:13 +0000 (18:47 +0000)]
Move CompileCommonOpts to the end of the list so that EXTRA_OPTIONS=-O0 will
override the optimization level.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30672
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 29 Sep 2006 18:43:14 +0000 (18:43 +0000)]
Define this in the correct n/s
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30671
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 29 Sep 2006 17:34:56 +0000 (17:34 +0000)]
Adjust this to the wonky syntax that GCC expects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30670
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Laskey [Fri, 29 Sep 2006 17:31:45 +0000 (17:31 +0000)]
Wrong directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30669
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:45:00 +0000 (23:45 +0000)]
Minor cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30668
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:38:07 +0000 (23:38 +0000)]
Now that ConstantBool::True/False are gone, we can modify Type.cpp to
eliminate its static dtors, without having code that depends on order of
initialization. Eliminate static ctors/dtors from Type.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30667
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:36:21 +0000 (23:36 +0000)]
Eliminate ConstantBool::True and ConstantBool::False. Instead, provide
ConstantBool::getTrue() and ConstantBool::getFalse().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30666
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:35:22 +0000 (23:35 +0000)]
Eliminate ConstantBool::True and ConstantBool::False. Instead, provide
ConstantBool::getTrue() and ConstantBool::getFalse().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30665
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:34:49 +0000 (23:34 +0000)]
Eliminate ConstantBool::True and ConstantBool::False. Instead, provideConstantBool::getTrue() and ConstantBool::getFalse().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30664
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:33:12 +0000 (23:33 +0000)]
update comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30663
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:32:43 +0000 (23:32 +0000)]
wrap long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30662
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:24:48 +0000 (23:24 +0000)]
simplify code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30661
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:19:29 +0000 (23:19 +0000)]
Simplify some code, reformat break's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30660
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:17:41 +0000 (23:17 +0000)]
simplify code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30659
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 23:14:29 +0000 (23:14 +0000)]
Simplify some code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30658
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Thu, 28 Sep 2006 23:02:22 +0000 (23:02 +0000)]
Another attempt at making ArgPromotion smarter. This patch no longer breaks Burg.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30657
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 22:58:25 +0000 (22:58 +0000)]
simplify code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30656
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 22:50:29 +0000 (22:50 +0000)]
simplify code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30655
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 28 Sep 2006 21:36:21 +0000 (21:36 +0000)]
Use the -emit-llvm switch to generate LLVM assembly that can be parsed
by the test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30654
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 28 Sep 2006 21:20:05 +0000 (21:20 +0000)]
Add a test case for PR902.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30653
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 20:48:45 +0000 (20:48 +0000)]
Shift amounts are always 32-bits, even in 64-bit mode. This fixes
CodeGen/PowerPC/2006-09-28-shift_64.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30652
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Sep 2006 20:48:17 +0000 (20:48 +0000)]
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30651
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 28 Sep 2006 19:28:24 +0000 (19:28 +0000)]
Fix PR902:
Errors are generated with the YYERROR macro which can only be called from
a production (inside yyparse) because of the goto statement in the macro.
This lead to several situations where GEN_ERROR was not called but
GenerateError was used instead (because it doesn't use YYERROR). However,
in such situations, catching the error much later (e.g. at the end of
the production) is not sufficient because LLVM can assert on invalid data
before the end of the production is reached. The solution is to ensure that
the CHECK_FOR_ERROR macro (which invokes YYERROR if there's an error) is
used as soon as possible after a call to GenerateError has been made.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30650
91177308-0d34-0410-b5e6-
96231b3b80d8