aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* Implement R_386_GOT32.Rafael Espindola2010-10-181-0/+3
* Relocate with .bss instead of using the symbol. Matches gas behavior.Rafael Espindola2010-10-181-0/+3
* Reenable assert.Rafael Espindola2010-10-181-1/+2
* Produce ELF::R_386_GOTPC relocations.Rafael Espindola2010-10-181-1/+6
* Make the bots happy.Rafael Espindola2010-10-181-1/+3
* Produce a R_386_PLT32 when needed. Moved the default cases of switches to theRafael Espindola2010-10-181-7/+13
* Handle GOTOFF correctly on i386.Rafael Espindola2010-10-181-5/+15
* Fix a typo and silence unused variable warnings in -Asserts build.Benjamin Kramer2010-10-171-4/+2
* Add a MCObjectFormat class so that code common to all targets that use aRafael Espindola2010-10-165-44/+76
* MC-COFF: Add support for default-null weak externals.Michael J. Spencer2010-10-162-48/+62
* MC/AsmParser: Report .stabs directive as unsupported.Daniel Dunbar2010-10-161-0/+9
* Refactor alias handling to AliasedSymbol.Rafael Espindola2010-10-151-13/+15
* Refactor code a bit and avoid creating unnecessary entries in the stringRafael Espindola2010-10-151-19/+19
* Remove some code duplication.Rafael Espindola2010-10-141-49/+18
* MC-COFF: Fix .bss section size. Fixes PR8335. Patch by NAKAMUTA Takumi!Michael J. Spencer2010-10-091-1/+1
* MC-COFF: Implement InitSections. Fixes PR8335.Michael J. Spencer2010-10-091-0/+39
* MC-COFF: Add COFFAsmParser. Completes PR8343.Michael J. Spencer2010-10-093-1/+150
* Fix Whitespace.Michael J. Spencer2010-10-091-58/+58
* MC-COFF: Assert on non-coff sections.Michael J. Spencer2010-10-092-0/+18
* MC: Move ParseDirectiveELFType into ELFAsmParser. COFF uses .type for somethi...Michael J. Spencer2010-10-092-49/+49
* MC-COFF: Handle relaxation in COFF better. Fixes PR8321.Michael J. Spencer2010-10-071-1/+29
* Minor cosmetic change: fix DOSish \r\n.NAKAMURA Takumi2010-10-071-4/+4
* MC-COFF: Fix symbol aliases. Fixes PR8251.Michael J. Spencer2010-10-071-5/+36
* Another case of 256 sections not being enough :-)Rafael Espindola2010-10-061-1/+1
* Get binding and visibility info from the the alias, but Type from the symbolRafael Espindola2010-10-061-3/+25
* MC: Add missing forward in MCLoggingStreamer.Michael J. Spencer2010-10-061-0/+1
* If a symbol is global, reloc against it even if it is in a mergeable section.Rafael Espindola2010-10-061-3/+3
* Make sure weak symbols are listed after the local ones.Rafael Espindola2010-10-062-2/+4
* Correctly handle GOTPCREL relocations.Rafael Espindola2010-10-061-3/+6
* Use a relocation against the symbol if it is a PLT and the symbol is in anotherRafael Espindola2010-10-051-2/+11
* Implement more alias cases.Rafael Espindola2010-10-051-0/+11
* 256 sections should be enough for anyone...Rafael Espindola2010-10-051-1/+1
* Don't crash in a strange .size directive.Rafael Espindola2010-10-051-5/+15
* Fix Punctuation.Michael J. Spencer2010-10-051-1/+1
* MC-COFF: Fix (PR8278) temporary symbol relocations.Michael J. Spencer2010-10-051-1/+2
* Add support for a fill value in the .zero directive.Rafael Espindola2010-10-051-1/+8
* Implement a simple alias case and refactor the code a bit so that theRafael Espindola2010-10-051-17/+35
* Produce a undefined reference to _GLOBAL_OFFSET_TABLE_ when needed.Rafael Espindola2010-10-051-1/+25
* On ELF we need to know which symbols are used in relocations to decide ifRafael Espindola2010-10-054-77/+47
* Incorporate suggestions by Daniel Dunbar after his review. Thanks Daniel!Kevin Enderby2010-10-043-9/+5
* Implement ELF::R_X86_64_GOTPCREL.Rafael Espindola2010-10-041-0/+3
* Move isFixupKindX86PCRel.Rafael Espindola2010-10-041-12/+12
* Produce a R_X86_64_PLT32 when needed.Rafael Espindola2010-10-041-1/+10
* Produce a R_X86_64_GOT32 when needed.Rafael Espindola2010-10-041-1/+12
* Add hook in MCSection to decide when to use "optimized nops", for eachJan Wen Voung2010-10-044-7/+13
* Include the section address in the computation of the relocation.Rafael Espindola2010-10-041-1/+8
* Correctly compute the relocation when it is not in the first fragment.Rafael Espindola2010-10-041-1/+1
* Implement a very basic PIC case.Rafael Espindola2010-10-031-0/+7
* This adds a Darwin x86_64 relocation encoding for a subtraction expressionKevin Enderby2010-10-022-22/+30
* Factor some logic into ShouldRelocOnSymbol. This simplifies the code andRafael Espindola2010-09-301-38/+31