- Mar 07, 2010
-
-
Jeffrey Yasskin authored
llvm-svn: 97917
-
Tobias Grosser authored
Add a missing interface to be able to call findNearestCommonDominator for a PostDominanceTree. The function itself is already implemented in DominatorTreeBase. The interface however was only added to the DominatorTree class, but not the PostDominatorClass. llvm-svn: 97915
-
Chris Lattner authored
llvm-svn: 97914
-
Chris Lattner authored
llvm-svn: 97912
-
Chris Lattner authored
llvm-svn: 97911
-
Jeffrey Yasskin authored
(Rolling back r97906.) llvm-svn: 97909
-
Chris Lattner authored
Now it will factor things like this: CheckType i32 ... CheckOpcode ISD::AND CheckType i64 ... into: SwitchType: i32: ... i64: CheckOpcode ISD::AND ... This shrinks hte table by a few bytes, nothing spectacular. llvm-svn: 97908
-
Jeffrey Yasskin authored
llvm-svn: 97906
-
Chris Lattner authored
for CheckValueTypeMatcher. The isContradictory implementation helps us factor better, shrinking x86 table from 79144 -> 78896 bytes. llvm-svn: 97905
-
Chris Lattner authored
llvm-svn: 97895
-
Wesley Peck authored
llvm-svn: 97891
-
- Mar 06, 2010
-
-
Nick Lewycky authored
llvm-svn: 97889
-
Anton Korobeynikov authored
llvm-svn: 97888
-
Anton Korobeynikov authored
Patch by John Tytgat! llvm-svn: 97886
-
Anton Korobeynikov authored
We cannot use a normal call here since it has extra unmodelled side effects (it changes stack pointer). This should fix PR5292. llvm-svn: 97884
-
Chris Lattner authored
llvm-svn: 97883
-
Chris Lattner authored
llvm-svn: 97882
-
Anton Korobeynikov authored
Do not use '&' prefix for globals when register base field is non-zero, otherwise msp430-as will silently miscompile the code (TI's assembler report an error though). This fixes PR6349 llvm-svn: 97877
-
Eric Christopher authored
before we try to optimize. llvm-svn: 97876
-
Eric Christopher authored
out the remainder of the calls that we should lower in some way and move the tests to the new correct directory. Fix up tests that are now optimized more than they were before by -instcombine. llvm-svn: 97875
-
Rafael Espindola authored
llvm-svn: 97871
-
Chris Lattner authored
llvm-svn: 97870
-
Chris Lattner authored
llvm-svn: 97869
-
Jim Grosbach authored
registers may be restored via a pop instruction, not just a tRestore. This fixes nightly test 471.omnetep for Thumb1. llvm-svn: 97867
-
Eric Christopher authored
Log: Transform @llvm.objectsize to integer if the argument is a result of malloc of known size. Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp llvm/trunk/test/Transforms/InstCombine/objsize.ll It appears to be causing swb and nightly test failures. llvm-svn: 97866
-
Dale Johannesen authored
llvm-svn: 97865
-
Evan Cheng authored
llvm-svn: 97861
-
Evan Cheng authored
llvm-svn: 97860
-
Erick Tryzelaar authored
llvm-svn: 97858
-
Erick Tryzelaar authored
Luckily this never was released. llvm-svn: 97857
-
Erick Tryzelaar authored
llvm-svn: 97856
-
Dale Johannesen authored
functional change yet. llvm-svn: 97855
-
Dan Gohman authored
conversions. llvm-svn: 97854
-
Devang Patel authored
llvm-svn: 97852
-
- Mar 05, 2010
-
-
Ted Kremenek authored
llvm-svn: 97846
-
Charles Davis authored
is a workaround for <rdar://problem/7672401/> (which I filed). This let's us build Wine on Darwin, and it gets the Qt build there a little bit further (so Doug says). llvm-svn: 97845
-
Eric Christopher authored
can be used in more places. Add an argument for the TargetData that most of them need. Update for the getInt8PtrTy() change. Should be no functionality change. llvm-svn: 97844
-
Eric Christopher authored
llvm-svn: 97841
-
Jakob Stoklund Olesen authored
CALL ... %RAX<imp-def> ... [not using %RAX] %EAX = ..., %RAX<imp-use, kill> RET %EAX<imp-use,kill> Now we do this: CALL ... %RAX<imp-def, dead> ... [not using %RAX] %EAX = ... RET %EAX<imp-use,kill> By not artificially keeping %RAX alive, we lower register pressure a bit. The correct number of instructions for 2008-08-05-SpillerBug.ll is obviously 55, anybody can see that. Sheesh. llvm-svn: 97838
-
Jakob Stoklund Olesen authored
post-ra scheduler has run. Disable the verifier checks that late in the game. llvm-svn: 97837
-