| Commit message (Expand) | Author | Age | Files | Lines |
* | 1. Make MCSection an abstract class. | Chris Lattner | 2009-08-08 | 1 | -1/+0 |
* | eliminate TargetLoweringObjectFileSparc in favor of a TAI hook. | Chris Lattner | 2009-08-08 | 1 | -0/+1 |
* | remove a bunch of now-dead crud from the asmprinter and TAI interfaces. | Chris Lattner | 2009-08-07 | 1 | -2/+0 |
* | remove the 'DataSectionStartSuffix' and 'TextSectionStartSuffix' knobs. | Chris Lattner | 2009-08-05 | 1 | -2/+0 |
* | rip out SectionEndDirectiveSuffix support, only uses by | Chris Lattner | 2009-08-04 | 1 | -1/+0 |
* | move dwarf debug info section selection stuff from TAI to | Chris Lattner | 2009-08-02 | 1 | -12/+1 |
* | convert EHFrameSection to be managed by TLOF instead of TAI. | Chris Lattner | 2009-08-02 | 1 | -1/+0 |
* | Move the getInlineAsmLength virtual method from TAI to TII, where | Chris Lattner | 2009-08-02 | 1 | -25/+0 |
* | remove TargetAsmInfo::TM, which is now dead. The basic TAI class now | Chris Lattner | 2009-08-02 | 1 | -1/+1 |
* | clean up #includes of TargetAsmInfo.cpp | Chris Lattner | 2009-08-02 | 1 | -11/+0 |
* | remove the dead PreferredEHDataFormat TAI hook: its now dead | Chris Lattner | 2009-08-02 | 1 | -4/+0 |
* | move getDwarfExceptionSection from TAI to TLOF and rename it to | Chris Lattner | 2009-08-02 | 1 | -1/+0 |
* | convert ctors/dtors section to be in TLOF instead of | Chris Lattner | 2009-08-02 | 1 | -3/+0 |
* | Remove "JumpTableDataSection" from TAI, instead, have AsmPrinter | Chris Lattner | 2009-08-01 | 1 | -1/+0 |
* | REmove dead fields of TAI. | Chris Lattner | 2009-08-01 | 1 | -3/+0 |
* | PreferredEHDataFormat is always call with data and global, but this whole | Chris Lattner | 2009-07-31 | 1 | -2/+1 |
* | Rip all of the global variable lowering logic out of TargetAsmInfo. Since | Chris Lattner | 2009-07-28 | 1 | -218/+0 |
* | Sink getSectionPrefixForUniqueGlobal down into the TAI | Chris Lattner | 2009-07-27 | 1 | -9/+0 |
* | add an explanatory comment about why we drop these in readonly and | Chris Lattner | 2009-07-27 | 1 | -2/+6 |
* | don't create default text/data sections for all targets. | Chris Lattner | 2009-07-27 | 1 | -2/+0 |
* | Eliminate getNamed/getUnnamedSection, adding a new and unified getOrCreateSec... | Chris Lattner | 2009-07-27 | 1 | -21/+8 |
* | Eliminate SectionFlags, just embed a SectionKind into Section | Chris Lattner | 2009-07-27 | 1 | -34/+10 |
* | untangle a TargetAsmInfo hack where ELFTargetAsmInfo would create a | Chris Lattner | 2009-07-26 | 1 | -6/+5 |
* | remove a densemap from TargetAsmInfo that was uniquing the targetflags strings, | Chris Lattner | 2009-07-26 | 1 | -13/+0 |
* | simplify SectionFlagsForGlobal, even though I want to kill it. | Chris Lattner | 2009-07-26 | 1 | -6/+5 |
* | make SectionKind keep track of whether a global had an explicit | Chris Lattner | 2009-07-26 | 1 | -21/+24 |
* | make SectionKind know whether a symbol is weak or not in addition | Chris Lattner | 2009-07-26 | 1 | -17/+18 |
* | rename Mergable -> Mergeable and Writable -> Writeable | Chris Lattner | 2009-07-26 | 1 | -7/+7 |
* | remove a bunch of helper functions, just use SectionKind::get instead. | Chris Lattner | 2009-07-26 | 1 | -20/+25 |
* | simplify getSectionForMergableConstant to take a SectionKind. | Chris Lattner | 2009-07-26 | 1 | -3/+2 |
* | introduce specialized mergable const sectionkinds for elements of size 4/8/16 to | Chris Lattner | 2009-07-26 | 1 | -4/+14 |
* | improve the default impl of getSectionForMergableConstant by | Chris Lattner | 2009-07-26 | 1 | -2/+4 |
* | Rearrange all the SectionKinds and structure them into a hierarchical | Chris Lattner | 2009-07-26 | 1 | -12/+14 |
* | make SectionKind be a first-class pod struct instead of just | Chris Lattner | 2009-07-25 | 1 | -27/+31 |
* | this is (unfortunately) several changes mixed together: | Chris Lattner | 2009-07-25 | 1 | -58/+27 |
* | document some invariants. | Chris Lattner | 2009-07-25 | 1 | -1/+6 |
* | add the most expedient hack to fix PR4619, along with a testcase. | Chris Lattner | 2009-07-25 | 1 | -0/+5 |
* | fix some predicates | Chris Lattner | 2009-07-24 | 1 | -1/+1 |
* | change SectionKindForGlobal from being a public (and | Chris Lattner | 2009-07-24 | 1 | -17/+9 |
* | make SectionKindForGlobal target independent, and therefore non-virtual. | Chris Lattner | 2009-07-24 | 1 | -20/+59 |
* | we already know the sectionkind when invoking SelectSectionForGlobal, | Chris Lattner | 2009-07-24 | 1 | -4/+3 |
* | make SectionForGlobal non-virtual, add a hook for pic16 to do its "address=" ... | Chris Lattner | 2009-07-24 | 1 | -5/+12 |
* | move ELF-specific code into ELFTargetAsmInfo. | Chris Lattner | 2009-07-24 | 1 | -25/+1 |
* | tidy up | Chris Lattner | 2009-07-24 | 1 | -3/+4 |
* | split the ELF-specific section flag inference-from-name code out | Chris Lattner | 2009-07-24 | 1 | -25/+32 |
* | make SectionFlagsForGlobal a private static function instead of a public | Chris Lattner | 2009-07-24 | 1 | -6/+6 |
* | move a method up in the file, GV is always non-null, so remove a check. | Chris Lattner | 2009-07-24 | 1 | -61/+62 |
* | There is no need to pass the name into lib/Target/TargetAsmInfo.cpp | Chris Lattner | 2009-07-24 | 1 | -1/+1 |
* | Another getName -> getNameStr | Daniel Dunbar | 2009-07-24 | 1 | -1/+1 |
* | hoist section name uniquing logic up to the top-level SectionForGlobal | Chris Lattner | 2009-07-24 | 1 | -14/+22 |