aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Target
AgeCommit message (Expand)Author
2009-08-03Add 'Indirect' LocInfo class and use to pass __m128 on win64. Also minore fix...Anton Korobeynikov
2009-08-03Remove now unused arguments from TargetRegistry::lookupTarget.Daniel Dunbar
2009-08-03Pass target triple string in to TargetMachine constructor.Daniel Dunbar
2009-08-02Move most targets TargetMachine constructor to only taking a target triple.Daniel Dunbar
2009-08-02move dwarf debug info section selection stuff from TAI toChris Lattner
2009-08-02convert EHFrameSection to be managed by TLOF instead of TAI.Chris Lattner
2009-08-02Move the getInlineAsmLength virtual method from TAI to TII, whereChris Lattner
2009-08-02move a virtual method body to its .cpp file to avoid a #include Chris Lattner
2009-08-02remove the dead ELFTargetAsmInfo.h/cpp file. TargetAsmInfoChris Lattner
2009-08-02remove TargetAsmInfo::TM, which is now dead. The basic TAI class now Chris Lattner
2009-08-02move an enum from TM -> TargetOptions. This makes TargetOptions.hChris Lattner
2009-08-02remove the dead PreferredEHDataFormat TAI hook: its now deadChris Lattner
2009-08-02move getDwarfExceptionSection from TAI to TLOF and rename it to Chris Lattner
2009-08-02convert ctors/dtors section to be in TLOF instead ofChris Lattner
2009-08-01Remove "JumpTableDataSection" from TAI, instead, have AsmPrinterChris Lattner
2009-08-01REmove dead fields of TAI.Chris Lattner
2009-08-01fix a fixme by sinking various target-specific directives down into Chris Lattner
2009-08-01it turns out that isWeak() was basically dead anyway. Kill off SectionInfo :-/Chris Lattner
2009-08-01fix a layering violation by moving SectionKind out to its own header.Chris Lattner
2009-08-01Minor whitespace tidiness.Dan Gohman
2009-08-01with the previous refactoring, fixme fixed!Chris Lattner
2009-08-01Change SectionKind to be a property that is true of a *section*, itChris Lattner
2009-07-31PreferredEHDataFormat is always call with data and global, but this wholeChris Lattner
2009-07-31move emitUsedDirectiveFor to TargetLoweringObjectFile and rename it toChris Lattner
2009-07-31Fix build.Benjamin Kramer
2009-07-31switch off of 'Section' onto MCSection. We're not properly usingChris Lattner
2009-07-31refactor section construction in TLOF to be through an explicitChris Lattner
2009-07-31move the sectionkind and section classes to TargetLoweringObjectFile.hChris Lattner
2009-07-29inline the global 'getInstrOperandRegClass' function into its callersChris Lattner
2009-07-291. Introduce a new TargetOperandInfo::getRegClass() helper methodChris Lattner
2009-07-29make ptr_rc derive from a new PointerLikeRegClass tblgen class.Chris Lattner
2009-07-29Give getPointerRegClass() a "kind" value so that targets can Chris Lattner
2009-07-29pass the mangler down into the various SectionForGlobal methods.Chris Lattner
2009-07-29Match X86 register names to number.Daniel Dunbar
2009-07-28Move X86 instruction parsing into X86/AsmParser.Daniel Dunbar
2009-07-28Remove unused parameter name.Bill Wendling
2009-07-28Provide generic MCAsmParser when constructing target specific parsers.Daniel Dunbar
2009-07-28the apple "ld_classic" linker doesn't support .literal16 in 32-bitChris Lattner
2009-07-28Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner
2009-07-27llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API.Daniel Dunbar
2009-07-27Sink getSectionPrefixForUniqueGlobal down into the TAI Chris Lattner
2009-07-27make COFF work like ELF and macho, by splitting out into its ownChris Lattner
2009-07-27inline a method.Chris Lattner
2009-07-27Eliminate getNamed/getUnnamedSection, adding a new and unified getOrCreateSec...Chris Lattner
2009-07-27Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner
2009-07-26untangle a TargetAsmInfo hack where ELFTargetAsmInfo would create aChris Lattner
2009-07-26remove a densemap from TargetAsmInfo that was uniquing the targetflags strings,Chris Lattner
2009-07-26make SectionKind keep track of whether a global had an explicitChris Lattner
2009-07-26make SectionKind know whether a symbol is weak or not in additionChris Lattner
2009-07-26Make the kind actually be private.Chris Lattner