aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lto/LTOCodeGenerator.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add a hook to turn on the internalize pass through the LTO interface.Bill Wendling2012-04-091-2/+3
* The internalize pass can be dangerous for LTO.Bill Wendling2012-04-051-2/+13
* Add an option to turn off the expensive GVN load PRE part of GVN.Bill Wendling2012-04-021-1/+5
* Move trivial functions into the class definition.Bill Wendling2012-03-311-8/+0
* Trim headers.Bill Wendling2012-03-311-7/+0
* Indent according to LLVM's style guide.Bill Wendling2012-03-311-130/+121
* Cleanup whitespace and trim some of the #includes.Bill Wendling2012-03-311-1/+1
* These strings aren't 'const char *' but 'char *'.Bill Wendling2012-03-311-1/+1
* Cleanup whitespace.Bill Wendling2012-03-311-17/+17
* Free the codegen options when deleting LTO code generator object.Bill Wendling2012-03-311-26/+21
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-4/+3
* Move global variables in TargetMachine into new TargetOptions class. As an APINick Lewycky2011-12-021-1/+2
* Now that the linker supports lazily materialising globals, don'tPeter Collingbourne2011-11-051-4/+0
* rename getHostTriple into getDefaultTargetTripleSebastian Pop2011-11-011-1/+1
* Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng2011-08-241-2/+2
* Fixed compilation warning on Linux by fixing the type of a return value.John Criswell2011-08-181-1/+1
* Move methods in PassManagerBuilder offline.Rafael Espindola2011-08-021-0/+2
* move PassManagerBuilder.h to IPO. This is a non intuitive place to put it,Rafael Espindola2011-08-021-1/+1
* Fix typo.Nick Lewycky2011-07-251-1/+1
* Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng2011-07-221-4/+1
* Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng2011-07-201-2/+1
* Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng2011-07-201-1/+1
* Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng2011-07-191-4/+7
* Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng2011-07-181-1/+4
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge...Evan Cheng2011-07-141-0/+1
* Fix LTO after the recent MC subtarget refactoring.Cameron Zwarich2011-07-111-0/+1
* Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name toEvan Cheng2011-06-301-2/+2
* Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng2011-06-291-1/+1
* switch bugpoint and liblto to PassManagerBuilder.Chris Lattner2011-05-221-8/+6
* Add a lto_codegen_compile_to_file to avoid producing a file, reading it toRafael Espindola2011-03-221-43/+52
* We don't need a null terminator for the output file.Rafael Espindola2011-03-221-1/+4
* Use lazy parsing in LTO. Unfortunately this is only a 3% time saving forRafael Espindola2011-03-181-0/+4
* Add a special streamer to libLTO that just records symbols definitions andRafael Espindola2011-03-021-33/+75
* Switch LTO to use MC. This takes the linking of libxul.so from about 7m toRafael Espindola2011-02-241-119/+31
* Fix some memory leaks and avoid looking in the hash tables twice.Rafael Espindola2011-02-201-3/+4
* Preserve aliases if needed.Rafael Espindola2011-02-121-0/+8
* Fix a silly bug I introduced when dropping std::string.Rafael Espindola2011-02-121-0/+2
* Remove std::string version of getNameWithPrefix.Rafael Espindola2011-02-111-2/+5
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-161-3/+3
* Fixed version of 121434 with no new memory leaks.Rafael Espindola2010-12-101-1/+1
* Revert my previous patch to make the valgrind bots happy.Rafael Espindola2010-12-101-1/+1
* Initial support for the cfi directives. This is just enough to getRafael Espindola2010-12-091-1/+1
* More code not compiled by CMake. :(.Michael J. Spencer2010-12-091-2/+6
* Do not try luck by using given name to create temporary file. In parallel bui...Devang Patel2010-12-061-1/+1
* Do not try luck by using given name to create temporary file. In parallel bui...Devang Patel2010-12-031-1/+1
* I swear I did a make clean and make before committing all this...Michael J. Spencer2010-11-291-3/+3
* This file needs ToolOutputFile.h too.Dan Gohman2010-10-071-0/+1
* Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman2010-09-011-12/+13
* Convert tools to use tool_output_file, and introduce errorDan Gohman2010-08-201-4/+11