summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccld/GenerateCode.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate trailing spaces at end-of-lineMisha Brukman2005-04-201-7/+7
| | | | llvm-svn: 21372
* * Print commands as we execute them with `-v'Misha Brukman2005-04-201-4/+16
| | | | | | | * Add option `-save-temps' Patch contributed by Markus Oberhumer. llvm-svn: 21367
* The first argument to ExecuteAndWait should be the program name, but pointedChris Lattner2005-04-101-1/+4
| | | | | | out by Markus F.X.J. Oberhumer. llvm-svn: 21211
* Changes to enable creation of native executables directly from gccld and toReid Spencer2005-02-281-2/+89
| | | | | | | ensure that -L paths don't contain both bytecode and native libraries. This patch contributed by Adam Treat. llvm-svn: 20370
* Make sure to null terminate argument lists!Chris Lattner2005-02-131-0/+3
| | | | llvm-svn: 20166
* For PR351:Reid Spencer2004-12-191-14/+16
| | | | | | * Support changes in sys::Program::ExecuteAndWait interface llvm-svn: 19044
* For PR351:Reid Spencer2004-12-141-56/+29
| | | | | | | * Change ExecWait calls to sys::Program::ExecuteAndWait * Convert to use sys::Path where it makes sense llvm-svn: 18929
* This pass is no longer needed.Chris Lattner2004-12-101-1/+0
| | | | llvm-svn: 18782
* Turn on ipsccp by default instead of simple IPCPChris Lattner2004-12-101-1/+2
| | | | llvm-svn: 18753
* Recognize --strip-all as a synonym for -s.Chris Lattner2004-12-021-7/+8
| | | | | | Add -S and --strip-debug option support. llvm-svn: 18441
* -disable-opt is not -O0, it's okay for it to disable internalize.Chris Lattner2004-11-171-7/+7
| | | | llvm-svn: 17911
* Even with -disable-opt we should still internalize and strip if requested.Chris Lattner2004-11-161-13/+13
| | | | llvm-svn: 17903
* Linker.h has a new home.Reid Spencer2004-11-141-1/+1
| | | | llvm-svn: 17801
* Don't miss global optimizations because we run before the inlinerChris Lattner2004-10-111-0/+1
| | | | llvm-svn: 16913
* Rename passChris Lattner2004-10-071-3/+2
| | | | llvm-svn: 16801
* Changes For Bug 352Reid Spencer2004-09-011-2/+2
| | | | | | | | 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
* This pass has proven its metal, remove -disable option.Chris Lattner2004-08-021-5/+1
| | | | llvm-svn: 15411
* Run DSE at link-time, and turn on an IP alias analysis by default in gccld!Chris Lattner2004-07-271-1/+7
| | | | | | The -disable-globalsmodref is temporary and will be removed eventually. llvm-svn: 15268
* Linker.h moved to include/llvm/SupportMisha Brukman2004-06-231-1/+1
| | | | llvm-svn: 14351
* Move some functions out of gccld.cpp to GenerateCode.cpp. This allows usChris Lattner2004-06-021-0/+79
| | | | | | | to reduce the inter-file interface in the gccld tool and gets some uninteresting code out of gccld.cpp. llvm-svn: 13942
* Add a couple more IPO'sChris Lattner2004-04-121-0/+3
| | | | llvm-svn: 12863
* Disable strict alias analysis in the backend c compiler, as the code weChris Lattner2004-04-081-0/+1
| | | | | | generate is not TBAA safe. llvm-svn: 12774
* Revert previous patch, I'm a moron :)Chris Lattner2004-04-081-6/+5
| | | | llvm-svn: 12773
* Right, we break strict aliasing requirements. Make sure to disable strictChris Lattner2004-04-081-5/+6
| | | | | | aliasing in the C compiler. llvm-svn: 12772
* Minor cleanupsChris Lattner2004-04-061-32/+18
| | | | llvm-svn: 12700
* Add a new gccld -native-cbe option which causes gccld to generate native codeChris Lattner2004-04-061-1/+18
| | | | | | for the application with the C backend instead of the native LLVM code generator llvm-svn: 12698
* Run the new pass in gccld now that it passes all testsChris Lattner2004-03-071-0/+4
| | | | llvm-svn: 12196
* We have this snazzy link-time optimizer. How about we start using it? ThisChris Lattner2004-02-261-2/+6
| | | | | | | removes some cruft from 255.vortex, cleaning up after DAE and IPCP, which do horrible, beautiful, things to vortex. llvm-svn: 11861
* Add a new pass, run internalize firstChris Lattner2004-02-251-7/+11
| | | | llvm-svn: 11839
* Fixed PR#197. The libcrtend library is removed from the library linking listJohn Criswell2004-01-261-2/+4
| | | | | | when creating native executables. llvm-svn: 10979
* Make sure to verify the result before writing out the bytecode file. Not doingChris Lattner2004-01-141-0/+3
| | | | | | so can cause obscure errors downstream. llvm-svn: 10840
* The function resolving pass must be run, even if -disable-opt is specifiedChris Lattner2003-11-281-6/+6
| | | | llvm-svn: 10250
* For consistency, removed space between function name and left paren in functionMisha Brukman2003-11-201-15/+15
| | | | | | call, i.e. [ addPass (...) ] => [ addPass(...) ] llvm-svn: 10105
* Add a -verify option to verify the results of gccld passes.Brian Gaeke2003-11-161-43/+63
| | | | | | Add a -disable-opt option to turn off gccld optimization passes. llvm-svn: 10040
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+5
| | | | llvm-svn: 9903
* Give gccld more gutsChris Lattner2003-11-091-0/+8
| | | | llvm-svn: 9835
* Turn on the inliner by default at link-timeChris Lattner2003-10-241-0/+10
| | | | llvm-svn: 9477
* Turn on the IPCP pass by default. It has passed all of the testsChris Lattner2003-10-231-0/+3
| | | | llvm-svn: 9435
* fix file headerChris Lattner2003-10-201-1/+0
| | | | llvm-svn: 9294
* Added copyright header to all C++ source files.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9291
* Doxygen-ified function comments.Misha Brukman2003-09-301-61/+43
| | | | llvm-svn: 8771
* Removed extra space in comments.Misha Brukman2003-09-301-12/+12
| | | | llvm-svn: 8770
* Remove initials from source fileChris Lattner2003-09-301-2/+1
| | | | llvm-svn: 8769
* Make code more terse:Misha Brukman2003-09-301-69/+38
| | | | | | | | * Remove extra blank lines * Delete space between function call and arg list * Delete non-content comment lines ("//") llvm-svn: 8768
* Update file headers for renamed files.Chris Lattner2003-09-301-1/+1
| | | | llvm-svn: 8758
* Removed linking functionality from gccld.cpp and moved it to linker.cpp.John Criswell2003-09-191-42/+59
| | | | | | | | | | | | | Renamed functions that were all lower-case. Moved functions from util.cpp into linker.cpp or gccld.cpp. Removed util.h and created gccld.h. Refactored the linker functionality in linker.cpp so that it is easier to follow, easier to modify, and it's library/object file search behavior is easier to understand and document. Added code to include library paths when doing native linking, but this causes problems and is currently #ifdef'd out. llvm-svn: 8609
* Refactored gccld into three C++ source files.John Criswell2003-09-181-0/+228
Added code ignore bytecode link failures when generating native code. Moved native code and bytecode generation out of the main() function. llvm-svn: 8595
OpenPOWER on IntegriCloud