- Jan 21, 2007
-
-
Chris Lattner authored
llvm-svn: 33420
-
- Dec 07, 2006
-
-
Bill Wendling authored
now cerr, cout, and NullStream resp. llvm-svn: 32298
-
- Dec 06, 2006
-
-
Chris Lattner authored
With this change, I can now move -stats to print when llvm_shutdown is called. llvm-svn: 32250
-
- Nov 29, 2006
-
-
Bill Wendling authored
adding a temporary wrapper around the ostream to make it friendly to functions expecting an LLVM stream. This should be fixed in the future. llvm-svn: 31990
-
- Nov 11, 2006
-
-
Reid Spencer authored
llvm-svn: 31685
-
Reid Spencer authored
Fix an infinite loop in the Linker and a few other assorted link problems. Patch contributed by Scott Michel. Thanks, Scott! llvm-svn: 31680
-
- Nov 05, 2006
-
-
Reid Spencer authored
llvm-svn: 31466
-
Jeff Cohen authored
llvm-svn: 31464
-
- Sep 01, 2006
-
-
Anton Korobeynikov authored
- Removed warning about clobbered parameter in Bytecode/Reader llvm-svn: 30026
-
- Aug 23, 2006
-
-
Reid Spencer authored
Eliminate exception throwing from Path::renamePathOnDisk and adjust its users correspondingly. llvm-svn: 29843
-
Reid Spencer authored
Remove exceptions from the Path::create*OnDisk methods. Update their users to handle error messages via arguments and result codes. llvm-svn: 29840
-
Reid Spencer authored
Change the Path::make*OnDisk methods exception free and adjust their usage. llvm-svn: 29836
-
- Aug 21, 2006
-
-
Reid Spencer authored
Adjust usage of the ExecuteAndWait function to use the last argument which is the ErrMsg string. This is necessitated because this function no longer throws exceptions on error. llvm-svn: 29791
-
- Jun 27, 2006
-
-
Devang Patel authored
llvm-svn: 28928
-
- Jun 08, 2006
-
-
Reid Spencer authored
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
-
- May 14, 2006
-
-
Chris Lattner authored
llvm-svn: 28288
-
- Mar 06, 2006
-
-
Reid Spencer authored
(-L options) to TheLinker. Problem noticed by Wink Saville. llvm-svn: 26571
-
- Jan 10, 2006
-
-
Reid Spencer authored
With these patches we implement the ability for the Linker library to keep track of which libraries were actually bytecode files (not archives) and cause their users to remove such files from the list of libraries to pass to the native linker. llvm-svn: 25169
-
- Dec 21, 2005
-
-
Reid Spencer authored
This patch adds a -post-link-opts option to llvm-ld which allows an arbitrary program to optimize bytecode after linking. The program is passed two file names. The first is the input (linked bytecode) the second is where it must place its output (presumably after optimizing). If the output file is bytecode, it is used as a substitute for the input. This will allow things like poolalloc to be written as a separate program instead of a loadable module or built into LLVM. llvm-svn: 24893
-
- Dec 13, 2005
-
-
Reid Spencer authored
the module being constructed. This is used to correctly name the module. Previously the name of the linker tool was used which produces confusing output when the module identifier is used in an error message. llvm-svn: 24699
-
- Jul 08, 2005
-
-
Reid Spencer authored
This chagne just renames some sys::Path methods to ensure they are not misused. The Path documentation now divides methods into two dimensions: Path/Disk and accessor/mutator. Path accessors and mutators only operate on the Path object itself without making any disk accesses. Disk accessors and mutators will also access or modify the file system. Because of the potentially destructive nature of disk mutators, it was decided that all such methods should end in the work "Disk" to ensure the user recognizes that the change will occur on the file system. This patch makes that change. The method name changes are: makeReadable -> makeReadableOnDisk makeWriteable -> makeWriteableOnDisk makeExecutable -> makeExecutableOnDisk setStatusInfo -> setStatusInfoOnDisk createDirectory -> createDirectoryOnDisk createFile -> createFileOnDisk createTemporaryFile -> createTemporaryFileOnDisk destroy -> eraseFromDisk rename -> renamePathOnDisk These changes pass the Linux Deja Gnu tests. llvm-svn: 22354
-
Reid Spencer authored
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
-
- Apr 22, 2005
-
-
Misha Brukman authored
llvm-svn: 21428
-
- Apr 10, 2005
-
-
Chris Lattner authored
out by Markus F.X.J. Oberhumer. llvm-svn: 21211
-
- Feb 14, 2005
-
-
Chris Lattner authored
llvm-svn: 20167
-
- Jan 22, 2005
-
-
Jeff Cohen authored
llvm-svn: 19751
-
- Dec 30, 2004
-
-
Reid Spencer authored
* 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
-
- Dec 22, 2004
-
-
Reid Spencer authored
llvm-svn: 19109
-
Misha Brukman authored
llvm-svn: 19088
-
Reid Spencer authored
llvm-svn: 19086
-
- Dec 19, 2004
-
-
Reid Spencer authored
* Support changes in sys::Program::ExecuteAndWait interface llvm-svn: 19044
-
- Dec 18, 2004
-
-
Reid Spencer authored
caught by llvm-ld's main function. llvm-svn: 19030
-
Reid Spencer authored
llvm-svn: 19026
-
- Dec 17, 2004
-
-
Reid Spencer authored
* removeFile() -> sys::Path::destroyFile() * remove extraneous toString() calls * convert local variables representing path names from std::string to sys::Path * Use sys::Path objects with FileRemove instead of std::string * Use sys::Path methods for construction of path names llvm-svn: 19001
-
- Dec 14, 2004
-
-
Reid Spencer authored
* Change ExecWait calls to sys::Program::ExecuteAndWait * Convert to use sys::Path where it makes sense llvm-svn: 18929
-
Reid Spencer authored
Adjust to interface change for FindExecutable. llvm-svn: 18920
-
- Dec 13, 2004
-
-
Reid Spencer authored
Replace MakeFileReadable and MakeFileExecutable (from FileUtilities) with sys::Path::makeReadable and sys::Path:makeExecutable, respectively. llvm-svn: 18909
-
Reid Spencer authored
pass to the Linker::LinkInItems function. llvm-svn: 18894
-
Reid Spencer authored
llvm-svn: 18864
-
- Dec 08, 2004
-
-
Reid Spencer authored
llvm-svn: 18617
-