aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCELFStreamer.cpp
AgeCommit message (Expand)Author
2010-11-19Added support for the Mach-O .symbol_resolver directive. rdar://8673046Kevin Enderby
2010-11-19Change some methods in MCDwarf.cpp to be able to handle an arbitraryRafael Espindola
2010-11-16Add .loc methods to the streamer.Rafael Espindola
2010-11-15Change MCExpr::EvaluateAsRelocatableImpl of variables to return the originalRafael Espindola
2010-11-14Fix another case of a .comm directive without a corresponding .typeRafael Espindola
2010-11-14Fix the type of a symbol created with .comm and no corresponding .type.Rafael Espindola
2010-11-14Handle a peculiar comdat case: Creating a section with an undefinedRafael Espindola
2010-11-14Fix warning.Rafael Espindola
2010-11-11Mark labels declared in tls sections as STT_TLS. This matches the behavior ofRafael Espindola
2010-11-05Add '.code 32' assembler directive to MC streamers.Jim Grosbach
2010-11-05MC'ize the '.code 16' and '.thumb_func' ARM directives.Jim Grosbach
2010-11-05Put class into an anonymous namespace.Benjamin Kramer
2010-11-01Write the line info to .debug_line.Rafael Espindola
2010-11-01Move EmitInstruction to MCObjectStreamer so that ELF and MachO can share it.Rafael Espindola
2010-11-01Implement .weakref.Rafael Espindola
2010-10-06Make sure weak symbols are listed after the local ones.Rafael Espindola
2010-10-05On ELF we need to know which symbols are used in relocations to decide ifRafael Espindola
2010-09-30Tiny patch for proof-of-concept cleanup of ARMAsmPrinter::EmitStartOfAsmFile()Jason W Kim
2010-09-29Move "local commons" to the end of .bss to match the gnu as behavior.Rafael Espindola
2010-09-25Move ELF to HasReliableSymbolDifference=true. Also take the opportunity to putRafael Espindola
2010-09-22Avoid some Mach-O specific alignment being done on ELF.Rafael Espindola
2010-09-22Correctly align bss.Rafael Espindola
2010-09-21Implement support for .local and its "interesting" interactions with .comm.Rafael Espindola
2010-09-15Add a InitSections method to the streamer interface.Rafael Espindola
2010-09-13Factoring and potential bug fix. The elf "flags" cannot be used as masks.Rafael Espindola
2010-09-08ELF_STB_Local is 0 so setting and checking it must be done speciallyRoman Divacky
2010-09-02Allow MCSA_WeakRef in ELF. Patch by Roman Divacky.Benjamin Kramer
2010-08-30Mark all common symbols external. This is not exactly correct but it lets appsBenjamin Kramer
2010-08-27MCELF: Port EmitInstruction changes from MachO streamer. Patch by Roman Divacky.Benjamin Kramer
2010-08-16Fix a few warnings in and detabify MCELFStreamer and ELFObjectWriter.Eli Friedman
2010-08-16Add ELF ObjectWriter and Streamer support.Matt Fleming