llvm-6502/include/llvm/MC
Kevin Enderby 613b757689 First part of support for generating dwarf for assembly source files with the
-g flag.  In this part we generate the .file for the source being assembled and
the .loc's for the assembled instructions.

The next part will be to generate the dwarf Compile Unit DIE and a dwarf
subprogram DIE for each non-temporary label.

Once the next part is done test cases will be added.  rdar://9275556


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143509 91177308-0d34-0410-b5e6-96231b3b80d8
2011-11-01 22:27:22 +00:00
..
MCParser Add AsmToken::getEndLoc and use it to add ranges to x86 asm register parsing. 2011-10-16 12:10:27 +00:00
EDInstInfo.h Fix C++0x narrowing errors when char is unsigned. 2011-08-30 20:53:29 +00:00
MachineLocation.h Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions for 2011-07-18 22:29:13 +00:00
MCAsmBackend.h Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. 2011-07-25 23:24:55 +00:00
MCAsmInfo.h Teach our Dwarf emission to use the string pool. 2011-10-27 06:44:11 +00:00
MCAsmInfoCOFF.h
MCAsmInfoDarwin.h Support .code32 and .code64 in X86 assembler. 2011-07-27 00:38:12 +00:00
MCAsmLayout.h Fix a ton of comment typos found by codespell. Patch by 2011-04-15 05:18:47 +00:00
MCAssembler.h Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. 2011-07-25 23:24:55 +00:00
MCAtom.h MCAtom extending methods need to extend the range of the atom as well. 2011-10-10 18:09:38 +00:00
MCCodeEmitter.h MC: Move target specific fixup info descriptors to TargetAsmBackend instead of 2010-12-16 03:20:06 +00:00
MCCodeGenInfo.h Some refactoring so TargetRegistry.h no longer has to include any files 2011-08-23 20:15:21 +00:00
MCContext.h First part of support for generating dwarf for assembly source files with the 2011-11-01 22:27:22 +00:00
MCDirectives.h Support .code32 and .code64 in X86 assembler. 2011-07-27 00:38:12 +00:00
MCDisassembler.h Adding back support for printing operands symbolically to ARM's new disassembler 2011-10-04 22:44:48 +00:00
MCDwarf.h Add a field for the compact unwind encoding. 2011-07-19 00:00:05 +00:00
MCELFObjectWriter.h Move some data to the TargetWriter. 2010-12-18 03:27:34 +00:00
MCELFSymbolFlags.h sets bit 0 of the function address of thumb function in .symtab 2011-05-16 16:17:21 +00:00
MCExpr.h This is the first of several patches for Mips direct object generation. 2011-10-25 18:13:20 +00:00
MCFixup.h Add support for the same encodings of the personality function that gnu as 2010-12-27 00:36:05 +00:00
MCFixupKindInfo.h MC: Split MCFixupKindInfo out into its own header. 2010-12-16 03:05:53 +00:00
MCInst.h MCOperand is pod-like. 2011-10-17 21:18:03 +00:00
MCInstPrinter.h Don't attach annotations to MCInst's. Instead, have the disassembler return, and the printer accept, an annotation string which can be passed through if the client cares about annotations. 2011-09-15 23:38:46 +00:00
MCInstrAnalysis.h Use the correct predicate for determining if a branch is conditional or not. 2011-10-17 21:21:44 +00:00
MCInstrDesc.h Add target hook for pseudo instruction expansion. 2011-09-25 19:21:35 +00:00
MCInstrInfo.h Indentation 2011-06-29 21:58:37 +00:00
MCInstrItineraries.h Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries) into MC. 2011-06-29 01:14:12 +00:00
MCLabel.h
MCMachObjectWriter.h Refactor MachO relocation generaration into the Target directories. 2011-06-24 23:44:37 +00:00
MCMachOSymbolFlags.h MC/Mach-O/Thumb: Set the thumb bit in the symbol table. 2010-12-29 14:14:06 +00:00
MCModule.h Start stubbing out MCModule and MCAtom, which provide an API for accessing the rich disassembly of a complete object or executable. 2011-09-22 22:32:22 +00:00
MCObjectFileInfo.h Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. 2011-07-20 19:50:42 +00:00
MCObjectStreamer.h Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. 2011-07-25 23:24:55 +00:00
MCObjectWriter.h Gas is very inconsistent about when a relaxation/relocation is needed. Do 2011-02-16 03:25:55 +00:00
MCRegisterInfo.h Trailing whitespace. 2011-10-27 17:44:01 +00:00
MCSection.h Remove unused STL header includes. 2011-04-23 19:53:52 +00:00
MCSectionCOFF.h make isVirtualSection a virtual method on MCSection. Chris' suggestion. 2010-11-17 20:03:54 +00:00
MCSectionELF.h Speculatively revert commit 127478 (jsjodin) in an attempt to fix the 2011-03-12 13:07:37 +00:00
MCSectionMachO.h Fix comments. 2011-03-23 23:32:48 +00:00
MCStreamer.h Add support for a new extension to the .file directive: 2011-10-17 23:05:28 +00:00
MCSubtargetInfo.h - Eliminate MCCodeEmitter's dependency on TargetMachine. It now uses MCInstrInfo 2011-07-11 03:57:24 +00:00
MCSymbol.h MCExpr: Add FindAssociatedSection, which attempts to mirror the 'as' semantics 2011-04-29 18:00:03 +00:00
MCTargetAsmLexer.h Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser. 2011-07-26 00:24:13 +00:00
MCTargetAsmParser.h MCTargetAsmParser target match predicate support. 2011-08-15 23:03:29 +00:00
MCValue.h Remove unimplemented method. Fixes PR10658. 2011-08-16 13:53:50 +00:00
MCWin64EH.h Add a parameter to the Win64 EH section getters to get a section with a 2011-05-27 19:09:24 +00:00
SectionKind.h Trailing whitespace. 2010-07-01 01:00:22 +00:00
SubtargetFeature.h Change createAsmParser to take a MCSubtargetInfo instead of triple, 2011-07-09 05:47:46 +00:00