| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Get rid of the difference between file paths and directory paths. The Path
class now simply stores a path that can refer to either a file or a
directory. This required various changes in the implementation and interface
of the class with the corresponding impact to its users. Doxygen comments were
also updated to reflect these changes. Interface changes are:
appendDirectory -> appendComponent
appendFile -> appendComponent
elideDirectory -> eraseComponent
elideFile -> eraseComponent
elideSuffix -> eraseSuffix
renameFile -> rename
setDirectory -> set
setFile -> set
Changes pass Dejagnu and llvm-test/SingleSource tests.
llvm-svn: 22349
|
|
|
|
| |
llvm-svn: 21799
|
|
|
|
| |
llvm-svn: 21422
|
|
|
|
|
|
|
|
| |
using Function::arg_{iterator|begin|end}. Likewise Module::g* -> Module::global_*.
This patch is contributed by Gabor Greif, thanks!
llvm-svn: 20597
|
|
|
|
|
|
|
| |
WARNING: Type conflict between types named 'union.._604.'.
Src=' %union.._604.'.
Dest=' %union.._604.'
llvm-svn: 20252
|
|
|
|
|
|
|
| |
This finally resolves PR502, PR450,
and test/Regression/Linker/2005-02-12-ConstantGlobals{,-2}.ll correctly
llvm-svn: 20135
|
|
|
|
| |
llvm-svn: 18859
|
|
|
|
| |
llvm-svn: 18774
|
|
|
|
| |
llvm-svn: 18611
|
|
|
|
|
|
| |
be removed when PR400 is resolved.
llvm-svn: 18610
|
|
|
|
| |
llvm-svn: 18494
|
|
|
|
|
|
|
|
|
| |
correctly link globals whose LLVM types do not match.
This fixes several of the F2C SPEC FP benchmarks, which were failing this
due to the implementation of common blocks used by f2c.
llvm-svn: 18465
|
|
|
|
|
|
| |
Make sure lines don't exceed 80 cols.
llvm-svn: 18242
|
|
|
|
| |
llvm-svn: 17904
|
|
|
|
|
|
| |
being linked do not need to be remapped any longer.
llvm-svn: 17900
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
by splicing function bodies from the src module to the destination module.
This speeds up linking quite a bit, e.g. gccld time on 176.gcc from 26s -> 20s
when forming the .rbc file, with a profile build. One of the really strange
but cool effects of this patch is that it speeds up the optimizers as well,
from 12s -> 10.7s, presumably because of better locality???
In any case, this is just a first step. We can trivially get rid of the
LocalMap now and do other simplifications.
llvm-svn: 17893
|
|
|
|
| |
llvm-svn: 17880
|
|
|
|
| |
llvm-svn: 17807
|
|
lib/Linker/LinkModules.cpp
llvm-svn: 17694
|