- Aug 24, 2005
-
-
Chris Lattner authored
llvm-svn: 23018
-
Chris Lattner authored
Regression/Transforms/SimplifyLibCalls/floor.ll. This triggers 19 times in 177.mesa. llvm-svn: 23017
-
Chris Lattner authored
llvm-svn: 23016
-
Chris Lattner authored
in mesa. llvm-svn: 23015
-
Chris Lattner authored
llvm-svn: 23014
-
Chris Lattner authored
select. Also teach it that the bit count instructions can only set the low bits of the result, depending on the size of the input. This allows us to compile this: int %eq0(int %a) { %tmp.1 = seteq int %a, 0 ; <bool> [#uses=1] %tmp.2 = cast bool %tmp.1 to int ; <int> [#uses=1] ret int %tmp.2 } To this: _eq0: cntlzw r2, r3 srwi r3, r2, 5 blr instead of this: _eq0: cntlzw r2, r3 rlwinm r3, r2, 27, 31, 31 blr when setcc is marked illegal on ppc (which restores parity to non-illegal setcc). Thanks to Nate for pointing this out. llvm-svn: 23013
-
Chris Lattner authored
llvm-svn: 23012
-
Chris Lattner authored
llvm-svn: 23011
-
Chris Lattner authored
llvm-svn: 23010
-
Misha Brukman authored
llvm-svn: 23009
-
Reid Spencer authored
Wrap a line. llvm-svn: 23008
-
Reid Spencer authored
projects to compile properly. llvm-svn: 23007
-
Reid Spencer authored
Make any header files that are automatically generated be preconditions of the compilation. This ensures that if a *.h.in file is changed then its corresponding *.h file gets updated on the next rebuild. Note that this can lead to confusing (but correct) results if the *.h.in file changed unsubstantially so that autoheader doesn't update the *.h file. In that case, manually touch the *.h file in question to restore order. Moral of the story, if you're going to "touch" a *.in file then modify it substantially. llvm-svn: 23006
-
Reid Spencer authored
These patches make threading optional in LLVM. The configuration scripts are now modified to accept a --disable-threads switch. If this is used, the Mutex class will be implemented with all functions as no-op. Furthermore, linking against libpthread will not be done. Finally, the ParallelJIT example needs libpthread so its makefile was changed to always add -lpthread to the link line. llvm-svn: 23003
-
Nate Begeman authored
target independent code in SelectionDAG.cpp llvm-svn: 23002
-
Nate Begeman authored
Prefer 'neg X' to 'subfic 0, X' since neg does not set XER[CA] llvm-svn: 23001
-
Nate Begeman authored
Prefer 'neg X' to 'subfic 0, X' since it does not set XER[CA] llvm-svn: 23000
-
Nate Begeman authored
nodes so that backends don't have to. llvm-svn: 22999
-
Chris Lattner authored
Call stil not supported yet llvm-svn: 22998
-
Chris Lattner authored
the target isel crashes due to unimplemented features like calls :) llvm-svn: 22997
-
Nate Begeman authored
llvm-svn: 22995
-
Chris Lattner authored
llvm-svn: 22994
-
Chris Lattner authored
binary search to test for membership. This speeds up LLC a bit more on KC++, e.g. on itanium from 16.6974s to 14.8272s, PPC from 11.4926s to 10.7089s and X86 from 10.8128s to 9.7943s, with no difference in generated code (like all of the RA patches). With these changes, isel is the slowest pass for PPC/X86, but linscan+live intervals is still > 50% of the compile time for itanium. More work could be done, but this is the last for now. llvm-svn: 22993
-
Chris Lattner authored
llvm-svn: 22992
-
Chris Lattner authored
llvm-svn: 22991
-
Chris Lattner authored
rearrange some of the accessors to be more efficient. This makes it much more efficient to iterate over all of the things with the same value. This speeds up liveintervals analysis from 8.63s to 3.79s with a release build of llc on kc++ with -march=ia64. This also speeds up live var from 1.66s -> 0.87s as well, reducing total llc time from 20.1s->15.2s. This also speeds up other targets slightly, e.g. llc time on X86 from 16.84 -> 16.45s, and PPC from 17.64->17.03s. llvm-svn: 22990
-
Chris Lattner authored
llvm-svn: 22989
-
Chris Lattner authored
llvm-svn: 22988
-
Chris Lattner authored
llvm-svn: 22987
-
Chris Lattner authored
Use this information to avoid doing expensive interval intersections for registers that could not possible be interesting. This speeds up linscan on ia64 compiling kc++ in release mode from taking 7.82s to 4.8s(!), total itanium llc time on this program is 27.3s now. This marginally speeds up PPC and X86, but they appear to be limited by other parts of linscan, not this code. On this program, on itanium, live intervals now takes 41% of llc time. llvm-svn: 22986
-
- Aug 23, 2005
-
-
Chris Lattner authored
llvm-svn: 22985
-
Chris Lattner authored
x%y for 'rem' on fp values. llvm-svn: 22984
-
Chris Lattner authored
llvm-svn: 22983
-
Chris Lattner authored
llvm-svn: 22982
-
Nate Begeman authored
llvm-svn: 22981
-
Nate Begeman authored
llvm-svn: 22979
-
Nate Begeman authored
either seteq X, 0 or srl (ctlz X), size(X-1), depending on what's legal for the target. llvm-svn: 22978
-
Nate Begeman authored
llvm-svn: 22977
-
Nate Begeman authored
llvm-svn: 22976
-
Chris Lattner authored
llvm-svn: 22975
-