aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lto
Commit message (Expand)AuthorAgeFilesLines
* Move global variables in TargetMachine into new TargetOptions class. As an APINick Lewycky2011-12-022-2/+5
* Now that the linker supports lazily materialising globals, don'tPeter Collingbourne2011-11-051-4/+0
* Reformatting changes to get rid of blank lines, put code on one line, and toBill Wendling2011-11-041-66/+58
* Move comment to the correct place.Bill Wendling2011-11-042-2/+1
* Make the Mangler an ivar so that it doesn't have to be passed around everywhere.Bill Wendling2011-11-042-29/+23
* Refactor the MCContext so that it's an ivar instead of a local which is passedBill Wendling2011-11-042-13/+13
* rename getHostTriple into getDefaultTargetTripleSebastian Pop2011-11-012-2/+2
* build: Tidy up a bunch of tool Makefiles, and simplify where possible using theDaniel Dunbar2011-10-181-13/+6
* lto/addAsmGlobalSymbols: fast path when no module level asm is present.Ivan Krasin2011-09-081-0/+2
* lto/addAsmGlobalSymbols: fail fracefully when the target does not define AsmP...Ivan Krasin2011-09-082-6/+13
* Don't drop alignment info on local common symbols.Benjamin Kramer2011-09-011-1/+2
* Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng2011-08-242-4/+4
* Fixed compilation warning on Linux by fixing the type of a return value.John Criswell2011-08-181-1/+1
* Remove unused Target argument from AsmParser construction methods.Jim Grosbach2011-08-161-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
* Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...Evan Cheng2011-07-261-3/+3
* Fix typo.Nick Lewycky2011-07-251-1/+1
* Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng2011-07-231-1/+1
* Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng2011-07-222-7/+2
* Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng2011-07-202-4/+2
* Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng2011-07-202-2/+2
* Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng2011-07-192-4/+8
* Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng2011-07-182-2/+7
* 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-142-0/+2
* Unfortunately several files in MC are badly violating layering rule by usingEvan Cheng2011-07-141-1/+2
* Fix LTO after the recent MC subtarget refactoring.Cameron Zwarich2011-07-112-0/+2
* Change createAsmParser to take a MCSubtargetInfo instead of triple,Evan Cheng2011-07-091-4/+6
* Eliminate asm parser's dependency on TargetMachine:Evan Cheng2011-07-081-1/+4
* Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name toEvan Cheng2011-06-302-4/+5
* Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng2011-06-292-2/+2
* Reinstate r133516 "Remove some unnecessary uses of c_str()." A trailing nullChad Rosier2011-06-281-6/+6
* PR10210: New method ConstantArray::getAsCString(). Use it in LTO toJay Foad2011-06-281-1/+1
* Revert r133516 "Remove some unnecessary uses of c_str()."Chad Rosier2011-06-271-6/+6
* Remove some unnecessary uses of c_str().Jay Foad2011-06-211-6/+6
* switch bugpoint and liblto to PassManagerBuilder.Chris Lattner2011-05-221-8/+6
* Simplify the handling of pcrel relocations on ELF. Now we do the right thingRafael Espindola2011-05-011-1/+1
* Remove unused argument.Rafael Espindola2011-04-211-4/+2
* Fix typo in comment.Nick Lewycky2011-04-211-1/+1
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* Update CMakeLists.txtDevang Patel2011-04-011-1/+1
* Expoert c interface for disassembler.Devang Patel2011-03-292-1/+5
* Add a lto_codegen_compile_to_file to avoid producing a file, reading it toRafael Espindola2011-03-224-43/+61
* 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-182-8/+27
* Simplify the computation of undefined symbols. Instead of walkingRafael Espindola2011-03-182-46/+2
* tools/lto/LTOModule.cpp: Eliminate an unused variable.NAKAMURA Takumi2011-03-181-1/+0
* Use RequiresNullTerminator to create buffers without a null terminatorRafael Espindola2011-03-171-9/+2
* Add support in the LTO library for loading an object from the middleRafael Espindola2011-03-174-4/+32