aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/WinCOFFObjectWriter.cpp
AgeCommit message (Expand)Author
2012-03-15Implement relocation-overflow behavior for PE/COFF.Michael J. Spencer
2011-12-24Move x86 specific bits of the COFF writer to lib/Target/X86.Rafael Espindola
2011-12-22Move all the dependencies on X86FixupKinds.h to a single method in preparationRafael Espindola
2011-12-17Add back the MC bits of 126425. Original patch by Nathan Jeffords. I added theRafael Espindola
2011-12-06Switch MCAssembler to method names starting w/ lower-case.Jim Grosbach
2011-11-08MC/COFF: Correctly emit the size of an empty string table.Michael J. Spencer
2011-07-25Refactor X86 target to separate MC code from Target code.Evan Cheng
2011-04-21Fix relative relocations. This is sufficient for running the rust testsuite withRafael Espindola
2011-04-20Behave like gnu as when a relocation crosses sections.Rafael Espindola
2011-02-25Roll out r126425 and r126450 to see if it fixes the failures on the buildbots.Cameron Zwarich
2011-02-24Enable DebugInfo support for COFF object files.Devang Patel
2011-02-16Gas is very inconsistent about when a relaxation/relocation is needed. DoRafael Espindola
2010-12-24Merge IsFixupFullyResolved and IsSymbolRefDifferenceFullyResolved. We nowRafael Espindola
2010-12-18Merge isAbsolute into IsSymbolRefDifferenceFullyResolved.Rafael Espindola
2010-12-18Remove the MCObjectFormat class.Rafael Espindola
2010-12-17MC/ObjectWriter: Add a new IsSymbolRefDifferenceFullyResolved target format s...Daniel Dunbar
2010-12-17MC/Assembler: Strip out object writer arguments, now that it is always availableDaniel Dunbar
2010-12-07Sorry for such a large commit. The summary is that only MachO cares about theRafael Espindola
2010-12-06Use getSymbolOffset on the COFF writer.Rafael Espindola
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-28Define generic 1, 2 and 4 byte pc relative relocations. They are commonRafael Espindola
2010-10-21Fix Warnings.Michael J. Spencer
2010-10-16MC-COFF: Add support for default-null weak externals.Michael J. Spencer
2010-10-09MC-COFF: Fix .bss section size. Fixes PR8335. Patch by NAKAMUTA Takumi!Michael J. Spencer
2010-10-09MC-COFF: Assert on non-coff sections.Michael J. Spencer
2010-10-07MC-COFF: Handle relaxation in COFF better. Fixes PR8321.Michael J. Spencer
2010-10-05Fix Punctuation.Michael J. Spencer
2010-10-05MC-COFF: Fix (PR8278) temporary symbol relocations.Michael J. Spencer
2010-10-05On ELF we need to know which symbols are used in relocations to decide ifRafael Espindola
2010-09-30Correctly produce R_X86_64_32 or R_X86_64_32S.Rafael Espindola
2010-09-30Make it possible for the MCObjectWriter to decide if a given fixup is fullyRafael Espindola
2010-09-29MC-COFF: Fix symbol storage class for globalsMichael J. Spencer
2010-09-27MC-COFF: Fix signed/unsigned comparison.Michael J. Spencer
2010-09-27MC-COFF: Drop empty sections, and label symbols. Convert relocationsMichael J. Spencer
2010-08-24Fix COFF x86-64 relocations. PR7960.Michael J. Spencer
2010-08-21MC: Add partial x86-64 support to COFF.Michael J. Spencer
2010-08-03MC: Fix symbol fragment offsets in COFF.Michael J. Spencer
2010-08-03Revert "MC: Fix symbol fragment offsets in COFF."Michael J. Spencer
2010-08-03MC: Add time travel support to COFF.Michael J. Spencer
2010-08-03MC: Fix symbol fragment offsets in COFF.Michael J. Spencer
2010-07-31Silence some -Asserts uninitialized variable warnings.Daniel Dunbar
2010-07-29COFFObjectWriter: Don't leak COFFSymbols and COFFSections.Benjamin Kramer
2010-07-26Fix format-specifier warningDouglas Gregor
2010-07-26MC: Fix whitespace error from last commit.Michael J. Spencer
2010-07-26MC: Add WinCOFFObjectWriter implementation.Michael J. Spencer
2010-07-11introduce WinCOFFObjectWriter, patch by Michael Spencer!Chris Lattner