| Commit message (Expand) | Author | Age | Files | Lines |
* | Rip all of the global variable lowering logic out of TargetAsmInfo. Since | Chris Lattner | 2009-07-28 | 1 | -213/+0 |
* | Sink getSectionPrefixForUniqueGlobal down into the TAI | Chris Lattner | 2009-07-27 | 1 | -93/+106 |
* | inline a method. | Chris Lattner | 2009-07-27 | 1 | -28/+24 |
* | sink text/data section creation down into the target-specific places that | Chris Lattner | 2009-07-27 | 1 | -0/+3 |
* | Eliminate getNamed/getUnnamedSection, adding a new and unified getOrCreateSec... | Chris Lattner | 2009-07-27 | 1 | -19/+23 |
* | Eliminate SectionFlags, just embed a SectionKind into Section | Chris Lattner | 2009-07-27 | 1 | -47/+55 |
* | untangle a TargetAsmInfo hack where ELFTargetAsmInfo would create a | Chris Lattner | 2009-07-26 | 1 | -3/+2 |
* | remove a densemap from TargetAsmInfo that was uniquing the targetflags strings, | Chris Lattner | 2009-07-26 | 1 | -27/+33 |
* | rename Mergable -> Mergeable and Writable -> Writeable | Chris Lattner | 2009-07-26 | 1 | -13/+13 |
* | simplify getSectionForMergableConstant to take a SectionKind. | Chris Lattner | 2009-07-26 | 1 | -15/+2 |
* | precreate 4/8/16 byte mergable sections to simplify code. | Chris Lattner | 2009-07-26 | 1 | -16/+19 |
* | introduce specialized mergable const sectionkinds for elements of size 4/8/16 to | Chris Lattner | 2009-07-26 | 1 | -2/+1 |
* | make elf targets correctly handle constant pool entries that require relocati... | Chris Lattner | 2009-07-26 | 1 | -2/+7 |
* | Rearrange all the SectionKinds and structure them into a hierarchical | Chris Lattner | 2009-07-26 | 1 | -32/+33 |
* | put normal data into .data instead of .data.rel on elf systems. | Chris Lattner | 2009-07-26 | 1 | -21/+11 |
* | eliminate a pointless switch stmt. | Chris Lattner | 2009-07-26 | 1 | -11/+2 |
* | make SectionKind be a first-class pod struct instead of just | Chris Lattner | 2009-07-25 | 1 | -4/+4 |
* | this is (unfortunately) several changes mixed together: | Chris Lattner | 2009-07-25 | 1 | -8/+30 |
* | make SectionKindForGlobal target independent, and therefore non-virtual. | Chris Lattner | 2009-07-24 | 1 | -29/+2 |
* | we already know the sectionkind when invoking SelectSectionForGlobal, | Chris Lattner | 2009-07-24 | 1 | -3/+2 |
* | move ELF-specific code into ELFTargetAsmInfo. | Chris Lattner | 2009-07-24 | 1 | -0/+27 |
* | hoist section name uniquing logic up to the top-level SectionForGlobal | Chris Lattner | 2009-07-24 | 1 | -9/+0 |
* | reduce indentation | Chris Lattner | 2009-07-24 | 1 | -35/+37 |
* | the 'isWeakForLinker' code is common between functions and globals, hoist it | Chris Lattner | 2009-07-24 | 1 | -55/+44 |
* | Replace UniqueSectionForGlobal with getSectionPrefixForUniqueGlobal. | Chris Lattner | 2009-07-24 | 1 | -2/+4 |
* | fix indentation. | Chris Lattner | 2009-07-24 | 1 | -14/+14 |
* | make Constant::getRelocationInfo return an enum, as suggested by Duncan. | Chris Lattner | 2009-07-24 | 1 | -2/+2 |
* | Remove SectionKind::Small*. This was only used on mips, and is apparently | Chris Lattner | 2009-07-24 | 1 | -5/+0 |
* | remove SectionFlags::Small: it is only used on Xcore, and we'll find | Chris Lattner | 2009-07-22 | 1 | -2/+0 |
* | Revert commit 76707, it was breaking the llvm-gcc build | Duncan Sands | 2009-07-22 | 1 | -2/+1 |
* | inline the two MergeableConstSection implementations into their | Chris Lattner | 2009-07-22 | 1 | -8/+5 |
* | set the ELF "small" flag on objects that end up in .rodata.cst4 consistently, | Chris Lattner | 2009-07-22 | 1 | -1/+2 |
* | don't set the small flag yet. | Chris Lattner | 2009-07-22 | 1 | -2/+1 |
* | remove the SelectSectionForMachineConst hook, replacing it with | Chris Lattner | 2009-07-22 | 1 | -18/+26 |
* | reimplement Constant::ContainsRelocations as | Chris Lattner | 2009-07-22 | 1 | -9/+9 |
* | simplify code now that it is inlined. | Chris Lattner | 2009-07-21 | 1 | -4/+2 |
* | Now that RelocBehaviour() is never overloaded, it doesn't need to be | Chris Lattner | 2009-07-21 | 1 | -1/+7 |
* | inline a trivial method into its only call site and fix indentation of cases | Chris Lattner | 2009-07-21 | 1 | -21/+16 |
* | Remove some overridden functions in XCoreTargetAsmInfo that are | Chris Lattner | 2009-07-21 | 1 | -3/+2 |
* | Add plumbing for the `linker_private' linkage type. This type is meant for | Bill Wendling | 2009-07-20 | 1 | -0/+1 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -3/+3 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -3/+4 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -2/+2 |
* | Fix thinko: put stuff with both global and local relocations into data.rel{.r... | Anton Korobeynikov | 2009-03-30 | 1 | -3/+3 |
* | Do not propagate ELF-specific stuff (data.rel) into other targets. This simpl... | Anton Korobeynikov | 2009-03-30 | 1 | -0/+24 |
* | Add data.rel stuff | Anton Korobeynikov | 2009-03-30 | 1 | -0/+15 |
* | Introduce new linkage types linkonce_odr, weak_odr, common_odr | Duncan Sands | 2009-03-07 | 1 | -3/+5 |
* | Treat [1 x i8] zeroinitializer as a C string, placing such stuff into | Anton Korobeynikov | 2009-01-27 | 1 | -2/+1 |
* | Add the private linkage. | Rafael Espindola | 2009-01-15 | 1 | -1/+1 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 1 | -2/+2 |