| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Shrinkify LLVM's footprint by removing the analyze tool and moving its
functionality into the opt tool. THis eliminates one of the largest tools
from LLVM and doesn't make opt much bigger because it already included
most of the analysis passes. To get the old analyze functionality pass
the -analyze option to opt. Note that the integeration here is dead
simple. The "main" of analyze was just copied to opt and invoked if the
-analyze option was given. There may be opportunities for further
integration such as removing the distinction between transform passes
and analysis passes.
To use the analysis functionality, if you previously did this:
analyze $FNAME -domset -disable-verify
you would now do this:
opt -analyze $FNAME -domset -disable-verify
Pretty simple.
llvm-svn: 29762
|
|
|
|
| |
llvm-svn: 29369
|
|
|
|
|
|
|
|
|
|
| |
have a compile-host version of "nm", not build-host. In order to effect this
we must use autoconf to determine the correct "nm" to use and propagate that
through the makefiles, through llvm-config and finally to GenLibDeps.pl as
an optional argument.
Patch contributed by Anton Korobeynikov. Thanks!
llvm-svn: 29368
|
|
|
|
| |
llvm-svn: 29035
|
|
|
|
| |
llvm-svn: 28831
|
|
|
|
|
|
|
|
|
| |
1. Add #includes to LinkAllVMCore.h to get Mangler.o and InlineAsm.o
2. Make Mangler.h and InlineAsm.h use the macros to ensure linkage
3. Make each of the tools with --load options include LinkAllVMCore.h
This should be the last set of changes for this bug and 800.
llvm-svn: 28719
|
|
|
|
|
|
|
| |
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
llvm-svn: 28610
|
|
|
|
|
|
| |
by Anton Korobeynikov! This is a step towards closing PR786.
llvm-svn: 28447
|
|
|
|
| |
llvm-svn: 27820
|
|
|
|
| |
llvm-svn: 26494
|
|
|
|
|
|
| |
rework.
llvm-svn: 24959
|
|
|
|
|
|
|
|
| |
into the LLVMAnalysis library.
This allows LLVMTranform and LLVMTransformUtils to be archives and linked
with LLVMAnalysis.a, which provides any missing definitions.
llvm-svn: 24036
|
|
|
|
|
|
|
|
|
|
| |
SparcV9 JIT.
2. Make LLVMTransformUtils a relinked object file and always link it before
LLVMAnalysis.a. These two libraries have circular dependencies on each
other which creates problem when building the SparcV9 JIT. This change
fixes the dependency on all platforms problems with a minimum of fuss.
llvm-svn: 24023
|
|
|
|
| |
llvm-svn: 23926
|
|
|
|
|
|
| |
in relinked object files
llvm-svn: 23922
|
|
|
|
| |
llvm-svn: 23918
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. Get rid of TOOLLINKOPTS as it is a hold over from llvm-test and only
used to communicate additional libraries to the linker. The *standard*
way to do that is with the LIBS variable which this change supports.
2. Allow the TARGETS_TO_BUILD variable to be set from the configuration
substitution. This is the result of the --enable-target= parameter to
the configure script.
llvm-svn: 21449
|
|
|
|
| |
llvm-svn: 21428
|
|
|
|
|
|
|
|
|
|
| |
* Place a try/catch block around the entire tool to Make sure std::string
exceptions are caught and printed before exiting the tool.
* Make sure we catch unhandled exceptions at the top level so that we don't
abort with a useless message but indicate than an unhandled exception was
generated.
llvm-svn: 19192
|
|
|
|
| |
llvm-svn: 18255
|
|
|
|
| |
llvm-svn: 17286
|
|
|
|
| |
llvm-svn: 17168
|
|
|
|
| |
llvm-svn: 17155
|
|
|
|
| |
llvm-svn: 17136
|
|
|
|
| |
llvm-svn: 17114
|
|
|
|
| |
llvm-svn: 16950
|
|
|
|
| |
llvm-svn: 16939
|
|
|
|
| |
llvm-svn: 16894
|
|
|
|
|
|
|
| |
from ModulePass. Instead of implementing Pass::run, then should implement
ModulePass::runOnModule.
llvm-svn: 16436
|
|
|
|
|
|
|
|
| |
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.
llvm-svn: 16137
|
|
|
|
|
|
| |
independence of the tool.
llvm-svn: 16092
|
|
|
|
| |
llvm-svn: 16091
|
|
|
|
| |
llvm-svn: 14980
|
|
|
|
|
|
| |
- Minimize redundant isa<GlobalValue> usage
llvm-svn: 14952
|
|
|
|
| |
llvm-svn: 14740
|
|
|
|
| |
llvm-svn: 14623
|
|
|
|
| |
llvm-svn: 13822
|
|
|
|
| |
llvm-svn: 13820
|
|
|
|
| |
llvm-svn: 13813
|
|
|
|
| |
llvm-svn: 12862
|
|
|
|
| |
llvm-svn: 12634
|
|
|
|
| |
llvm-svn: 12625
|
|
|
|
|
|
| |
to the tool.
llvm-svn: 11634
|
|
|
|
| |
llvm-svn: 10593
|
|
|
|
| |
llvm-svn: 9903
|
|
|
|
| |
llvm-svn: 9372
|
|
|
|
| |
llvm-svn: 9314
|
|
|
|
| |
llvm-svn: 9293
|
|
|
|
| |
llvm-svn: 9291
|
|
|
|
| |
llvm-svn: 7173
|