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