aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmStreamer.cpp
AgeCommit message (Expand)Author
2011-07-23Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng
2011-07-20Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng
2011-07-20Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng
2011-07-18Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng
2011-07-15Move some parts of TargetAsmInfo down to MCAsmInfo. This is not the greatestEvan Cheng
2011-07-14Unfortunately several files in MC are badly violating layering rule by usingEvan Cheng
2011-07-08Fix comment.Evan Cheng
2011-07-07This patch adds a flag in MCAsmInfo that indicates whether dwarf registerAkira Hatanaka
2011-06-23Reinstate r133513 (reverted in r133700) with an additional fix for aJay Foad
2011-06-23Revert r133513:Eric Christopher
2011-06-20Remove the subclassing. This will be moved to the ASM printer.Bill Wendling
2011-06-18* Override the "EmitBytes" function, since it can sneak values in that way.Bill Wendling
2011-06-17Remove false assertion.Bill Wendling
2011-06-17Disable for another investigation.Bill Wendling
2011-06-17Support only DwarfCFI or SjLj exception handling in LSDA decoder.Bill Wendling
2011-06-17SjLj exception handling LSDA decoding support wasn't represented correctly. UseBill Wendling
2011-06-17Disable to investigate ARM failure.Bill Wendling
2011-06-17Use the verbose asm flag instead of a new flag for decoding the LSDA.Bill Wendling
2011-06-17Add an option that allows one to "decode" the LSDA.Bill Wendling
2011-06-02Don't hardcode the %reg format in the streamer.Rafael Espindola
2011-05-30Use the dwarf->llvm mapping to print register names in the cfiRafael Espindola
2011-05-27Add a parameter to the Win64 EH section getters to get a section with aCharles Davis
2011-05-25Add tests for .seh_setframe and .seh_handlerdata parsing. Fix issues withCharles Davis
2011-05-22Add methods to parse the SEH directives to the COFFAsmParser. Implement someCharles Davis
2011-05-20Add missing leading \t when printing .cfi_def_cfa in the asmstreamer.Jim Grosbach
2011-05-20Now that they're implemented, make the Win64 EH MCAsmStreamer methods callCharles Davis
2011-05-19Misc code refactorings:Rafael Espindola
2011-05-19Implement the Win64 EH prolog instruction methods on the base MCStreamer.Charles Davis
2011-05-19Turns out GAS does have Win64 EH directives. (It also supports WinCE EH.) MakeCharles Davis
2011-05-18Remove comments as Chris requested.Charles Davis
2011-05-18Fix an obvious typo in r131572.Cameron Zwarich
2011-05-18Add some more Win64 EH directives:Charles Davis
2011-05-18Implement the Win64 EH directive methods for the assembly language streamer.Charles Davis
2011-05-16sets bit 0 of the function address of thumb function in .symtabRafael Espindola
2011-05-10Add CFIStartSections to the asm printer. Add an assert that at leastRafael Espindola
2011-05-10Factor some code into a new EmitFrames method.Rafael Espindola
2011-05-01GCC uses a different encoding of pointers in the FDE when usingRafael Espindola
2011-05-01Simplify the handling of pcrel relocations on ELF. Now we do the right thingRafael Espindola
2011-04-30Revert the previous patch while I figure out how to make llvm-gccRafael Espindola
2011-04-30Enable CFI on OS X.Rafael Espindola
2011-04-30Implement MCAsmStreamer::EmitEHSymAttributes. Doing this in the asm streamerRafael Espindola
2011-04-30Add all the plumbing needed for MC to expand cfi to the old tables inRafael Espindola
2011-04-30Implement MCAsmStreamer::EmitDwarfAdvanceFrameAddr.Rafael Espindola
2011-04-29Implement MCAsmStreamer::EmitCFIDefCfa.Rafael Espindola
2011-04-29Hoist MCLineEntry construction AsmPrinter so that anyone who derives from Asm...Devang Patel
2011-04-27Factor a bit of code to MCStreamer::EmitLabel. Keep track of the lastRafael Espindola
2011-04-21Remove unused argument.Rafael Espindola
2011-04-18Reduce clutter in asm output. Do not emit source location as comment for each...Devang Patel
2011-04-12Be consistent about being virtual and returning void in the cfi methods.Rafael Espindola
2011-03-27Fix whitespace.NAKAMURA Takumi