Use instruction itinerary to determine what instructions are 'cheap'.
[oota-llvm.git] / lib / MC /
2010-10-25 Daniel DunbarMC/AsmParser: Fix relative precedence of {+,-} and...
2010-10-25 Daniel DunbarMC/AsmLexer: Fix bug in source location for Slash token.
2010-10-25 Rafael EspindolaAdd support for emitting ARM file attributes.
2010-10-24 Rafael EspindolaAdd X86::reloc_global_offset_table and use it to have...
2010-10-22 Benjamin KramerMake some symbols static, move classes into anonymous...
2010-10-22 Wesley PeckMaking the e_machine configurable by the target backend...
2010-10-21 Jim GrosbachTrailing whitespace.
2010-10-21 Michael J. SpencerFix Warnings.
2010-10-21 Rafael EspindolaDo not recurse into symbol refs that have a variant...
2010-10-20 Chandler CarruthRemove remaining uses of ATTRIBUTE_UNUSED on variables...
2010-10-19 Rafael EspindolaSmall cleanups and fixes in preparation for fixing...
2010-10-19 Bill WendlingFix spelling.
2010-10-19 Chandler CarruthMove the definition of this to the source file to ancho...
2010-10-18 Rafael EspindolaImplement R_386_GOT32.
2010-10-18 Rafael EspindolaRelocate with .bss instead of using the symbol. Matches...
2010-10-18 Rafael EspindolaReenable assert.
2010-10-18 Rafael EspindolaProduce ELF::R_386_GOTPC relocations.
2010-10-18 Rafael EspindolaMake the bots happy.
2010-10-18 Rafael EspindolaProduce a R_386_PLT32 when needed. Moved the default...
2010-10-18 Rafael EspindolaHandle GOTOFF correctly on i386.
2010-10-17 Benjamin KramerFix a typo and silence unused variable warnings in...
2010-10-16 Rafael EspindolaAdd a MCObjectFormat class so that code common to all...
2010-10-16 Michael J. SpencerMC-COFF: Add support for default-null weak externals.
2010-10-16 Daniel DunbarMC/AsmParser: Report .stabs directive as unsupported.
2010-10-15 Rafael EspindolaRefactor alias handling to AliasedSymbol.
2010-10-15 Rafael EspindolaRefactor code a bit and avoid creating unnecessary...
2010-10-14 Rafael EspindolaRemove some code duplication.
2010-10-09 Michael J. SpencerMC-COFF: Fix .bss section size. Fixes PR8335. Patch...
2010-10-09 Michael J. SpencerMC-COFF: Implement InitSections. Fixes PR8335.
2010-10-09 Michael J. SpencerMC-COFF: Add COFFAsmParser. Completes PR8343.
2010-10-09 Michael J. SpencerFix Whitespace.
2010-10-09 Michael J. SpencerMC-COFF: Assert on non-coff sections.
2010-10-09 Michael J. SpencerMC: Move ParseDirectiveELFType into ELFAsmParser. COFF...
2010-10-07 Michael J. SpencerMC-COFF: Handle relaxation in COFF better. Fixes PR8321.
2010-10-07 NAKAMURA TakumiMinor cosmetic change: fix DOSish \r\n.
2010-10-07 Michael J. SpencerMC-COFF: Fix symbol aliases. Fixes PR8251.
2010-10-06 Rafael EspindolaAnother case of 256 sections not being enough :-)
2010-10-06 Rafael EspindolaGet binding and visibility info from the the alias...
2010-10-06 Michael J. SpencerMC: Add missing forward in MCLoggingStreamer.
2010-10-06 Rafael EspindolaIf a symbol is global, reloc against it even if it...
2010-10-06 Rafael EspindolaMake sure weak symbols are listed after the local ones.
2010-10-06 Rafael EspindolaCorrectly handle GOTPCREL relocations.
2010-10-05 Rafael EspindolaUse a relocation against the symbol if it is a PLT...
2010-10-05 Rafael EspindolaImplement more alias cases.
2010-10-05 Rafael Espindola256 sections should be enough for anyone...
2010-10-05 Rafael EspindolaDon't crash in a strange .size directive.
2010-10-05 Michael J. SpencerFix Punctuation.
2010-10-05 Michael J. SpencerMC-COFF: Fix (PR8278) temporary symbol relocations.
2010-10-05 Rafael EspindolaAdd support for a fill value in the .zero directive.
2010-10-05 Rafael EspindolaImplement a simple alias case and refactor the code...
2010-10-05 Rafael EspindolaProduce a undefined reference to _GLOBAL_OFFSET_TABLE_...
2010-10-05 Rafael EspindolaOn ELF we need to know which symbols are used in reloca...
2010-10-04 Kevin EnderbyIncorporate suggestions by Daniel Dunbar after his...
2010-10-04 Rafael EspindolaImplement ELF::R_X86_64_GOTPCREL.
2010-10-04 Rafael EspindolaMove isFixupKindX86PCRel.
2010-10-04 Rafael EspindolaProduce a R_X86_64_PLT32 when needed.
2010-10-04 Rafael EspindolaProduce a R_X86_64_GOT32 when needed.
2010-10-04 Jan Wen VoungAdd hook in MCSection to decide when to use "optimized...
2010-10-04 Rafael EspindolaInclude the section address in the computation of the...
2010-10-04 Rafael EspindolaCorrectly compute the relocation when it is not in...
2010-10-03 Rafael EspindolaImplement a very basic PIC case.
2010-10-02 Kevin EnderbyThis adds a Darwin x86_64 relocation encoding for a...
2010-09-30 Rafael EspindolaFactor some logic into ShouldRelocOnSymbol. This simpli...
2010-09-30 Kevin EnderbyThis is the last major patch to implement support for...
2010-09-30 Kevin EnderbyChanges EvaluateAsAbsolute() to return the "current...
2010-09-30 Chandler CarruthSilence a GCC warning about not handling all flags...
2010-09-30 Jan Wen VoungMove logic of determining ELF entsize from the .s print...
2010-09-30 Rafael EspindolaCorrectly produce R_X86_64_32 or R_X86_64_32S.
2010-09-30 Jason W KimTiny patch for proof-of-concept cleanup of ARMAsmPrinte...
2010-09-30 Jan Wen VoungHave ELFAsmParser.cpp use the already parsed "Size...
2010-09-30 Rafael EspindolaMake it possible for the MCObjectWriter to decide if...
2010-09-30 Jan Wen VoungTest commit - Deleted some whitespace at the end of...
2010-09-29 Rafael EspindolaMove "local commons" to the end of .bss to match the...
2010-09-29 Michael J. SpencerMC-COFF: Fix symbol storage class for globals
2010-09-29 Chris Lattnerchange the protocol TargetAsmPArser::MatchInstruction...
2010-09-28 Rafael EspindolaOn elf, undefined symbols can start with .L.
2010-09-27 Rafael EspindolaWrite relocations in the end of the file. This matches...
2010-09-27 Rafael EspindolaMake sure .text doesn't produce extra alignment.
2010-09-27 Rafael EspindolaFactor symbol value computation into a function.
2010-09-27 Michael J. SpencerMC-COFF: Fix signed/unsigned comparison.
2010-09-27 Daniel DunbarMC/AsmParser: Handle exponents in floating point literals.
2010-09-27 Rafael EspindolaRemove unused argument.
2010-09-27 Benjamin KramerPush twines deeper into SourceMgr's error handling...
2010-09-27 Michael J. SpencerMC-COFF: Drop empty sections, and label symbols. Conver...
2010-09-25 Rafael EspindolaMove ELF to HasReliableSymbolDifference=true. Also...
2010-09-24 Rafael EspindolaReapply 114678 and 114667. Reverting them did not fix...
2010-09-24 Rafael EspindolaRevert 114678 and 114667 to see if
2010-09-24 Daniel DunbarMC/AsmParser: Handle a missed case of floating literals...
2010-09-24 Daniel DunbarMC/AsmParser: Support .single and .double for embedding...
2010-09-24 Daniel DunbarMC/Lexer: Add 'Real' token type for floating point...
2010-09-24 Daniel DunbarMC: Add missing ')' in diagnostic.
2010-09-23 Rafael EspindolaCorrectly handle weak undefined symbols. Before we...
2010-09-23 Rafael EspindolaCorrectly compute the offset of the symbol. Forgot...
2010-09-23 Rafael EspindolaRepresent relocations against local symbols as relocati...
2010-09-23 Rafael EspindolaFix the FIXME.
2010-09-23 Sean CallananFixed a crash in the enhanced disassembler where
2010-09-22 Jim GrosbachAdd support for ELF PLT references for ARM MC asm print...
2010-09-22 Rafael EspindolaAvoid some Mach-O specific alignment being done on...
2010-09-22 Chris Lattnerallow target-specific label suffixes, patch by Yuri...
2010-09-22 Rafael EspindolaFix typo and add a FIXME.
next