| Commit message (Expand) | Author | Age | Files | Lines |
* | [DebugInfo] Allow getDebugThreadLocalSymbol to return MCExpr | Ulrich Weigand | 2013-07-02 | 1 | -1/+1 |
* | DebugInfo: PR14728: TLS support | David Blaikie | 2013-06-28 | 1 | -0/+6 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -5/+5 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -4/+4 |
* | Use TARGET2 relocation for TType references on ARM. | Anton Korobeynikov | 2012-11-14 | 1 | -12/+12 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -2/+2 |
* | Typo. | Eric Christopher | 2012-05-05 | 1 | -1/+1 |
* | Prune some includes | Craig Topper | 2012-03-27 | 1 | -1/+0 |
* | Remove some dead code and tidy things up now that vectors use ConstantDataVector | Chris Lattner | 2012-02-06 | 1 | -17/+0 |
* | C++, CBE, and TLOF support for ConstantDataSequential | Chris Lattner | 2012-01-24 | 1 | -5/+18 |
* | Add 'llvm_unreachable' to passify GCC's understanding of the constraints | Chandler Carruth | 2012-01-10 | 1 | -0/+1 |
* | Remove unnecessary default cases in switches that cover all enum values. | David Blaikie | 2012-01-10 | 1 | -2/+0 |
* | Move global variables in TargetMachine into new TargetOptions class. As an API | Nick Lewycky | 2011-12-02 | 1 | -3/+3 |
* | Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. | Evan Cheng | 2011-07-20 | 1 | -18/+2 |
* | Add MCObjectFileInfo and sink the MCSections initialization code from | Evan Cheng | 2011-07-20 | 1 | -27/+8 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -3/+3 |
* | Fix up TargetLoweringObjectFile ctors to properly initialize fields. | Evan Cheng | 2011-07-13 | 1 | -26/+26 |
* | Use the presence of the __compact_unwind section to indicate that a target | Bill Wendling | 2011-06-23 | 1 | -1/+0 |
* | Add a flag that indicates whether a target supports compact unwind info or not. | Bill Wendling | 2011-06-22 | 1 | -0/+1 |
* | Add a __LD,__compact_unwind section. | Bill Wendling | 2011-06-22 | 1 | -0/+1 |
* | Fix a FIXME by making GlobalVariable::getInitializer() return a | Jay Foad | 2011-06-19 | 1 | -2/+2 |
* | Remove a flag that would set the ".eh" symbol as .globl. MachO was the only one | Bill Wendling | 2011-05-05 | 1 | -1/+0 |
* | GCC uses a different encoding of pointers in the FDE when using | Rafael Espindola | 2011-05-01 | 1 | -1/+1 |
* | Remove unnecessary argument. | Rafael Espindola | 2011-04-27 | 1 | -1/+1 |
* | Rename getPersonalityPICSymbol to getCFIPersonalitySymbol, document it, and | Rafael Espindola | 2011-04-27 | 1 | -5/+4 |
* | Remove unused arguments. | Rafael Espindola | 2011-04-20 | 1 | -3/+2 |
* | MSVC needs the return 0 to compile. | Francois Pichet | 2011-04-16 | 1 | -0/+1 |
* | Put each personality function in a section. This fixes the gnu ld warning: | Rafael Espindola | 2011-04-16 | 1 | -0/+12 |
* | Add 129518 back with a fix for when we are producing eh just because of debug... | Rafael Espindola | 2011-04-15 | 1 | -1/+1 |
* | Revert r129518, "Change ELF systems to use CFI for producing the EH tables. T... | NAKAMURA Takumi | 2011-04-15 | 1 | -1/+1 |
* | Change ELF systems to use CFI for producing the EH tables. This reduces the | Rafael Espindola | 2011-04-14 | 1 | -1/+1 |
* | Delay the creation of eh_frame so that the user can change the defaults. | Rafael Espindola | 2011-01-23 | 1 | -1/+0 |
* | minor change to rafael's recent patches: if something is | Chris Lattner | 2011-01-18 | 1 | -1/+7 |
* | Only put unnamed_addr constants in mergeable sections. Fixes PR8297. | Rafael Espindola | 2011-01-16 | 1 | -1/+1 |
* | the latest assembler that runs on powerpc 10.4 machines doesn't | Chris Lattner | 2010-09-27 | 1 | -0/+1 |
* | Eliminate unnecessary uses of getZExtValue(). | Dan Gohman | 2010-06-18 | 1 | -1/+1 |
* | rename llvm::llvm_report_error -> llvm::report_fatal_error | Chris Lattner | 2010-04-07 | 1 | -1/+1 |
* | fix GetOrCreateTemporarySymbol to require a name, clients | Chris Lattner | 2010-03-17 | 1 | -1/+1 |
* | finally give Mangler a getSymbol method, which returns an MCSymbol | Chris Lattner | 2010-03-12 | 1 | -10/+1 |
* | make TargetLoweringObjectFile::getExprForDwarfReference | Chris Lattner | 2010-03-12 | 1 | -5/+1 |
* | fix a fixme in TargetLoweringObjectFile::getExprForDwarfReference | Chris Lattner | 2010-03-11 | 1 | -12/+18 |
* | rename getSymbolForDwarf* to getExprForDwarf* since it returns | Chris Lattner | 2010-03-11 | 1 | -6/+7 |
* | move three lowering hooks from MAI to TLOF and make one of them | Chris Lattner | 2010-03-10 | 1 | -0/+4 |
* | set the temporary bit on MCSymbols correctly. | Chris Lattner | 2010-03-10 | 1 | -1/+6 |
* | Make error statement more personal. | Bill Wendling | 2010-02-16 | 1 | -1/+1 |
* | Move TLOF implementations to libCodegen to resolve layering violation. | Anton Korobeynikov | 2010-02-15 | 1 | -842/+0 |
* | Add suffix for stubs, so we won't have name clashes with private symbols. | Anton Korobeynikov | 2010-02-15 | 1 | -0/+1 |
* | Preliminary patch to improve dwarf EH generation - Hooks to return Personalit... | Anton Korobeynikov | 2010-02-15 | 1 | -28/+89 |
* | Simplify some uses of str(n)cmp with StringRef. | Benjamin Kramer | 2010-01-22 | 1 | -21/+21 |
* | stop using the .lcomm pseudoop on darwin, instead, directly use the | Chris Lattner | 2010-01-19 | 1 | -4/+12 |