llvm-6502/lib/MC
Chris Lattner 79180e2ef5 Give AsmParser an option to control whether it finalizes
the stream.  New demo:

$ clang asm.c -S -o - -emit-llvm | llc -filetype=obj -o t.o
$ otool -tv t.o
t.o:
(__TEXT,__text) section
_foo:
0000000000000000	subq	$0x08,%rsp
0000000000000004	movl	%edi,(%rsp)
0000000000000007	movl	%edi,%eax
0000000000000009	incl	%eax
000000000000000b	movl	%eax,(%rsp)
000000000000000e	movl	%eax,0x04(%rsp)
0000000000000012	addq	$0x08,%rsp
0000000000000016	ret



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100492 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-05 23:15:42 +00:00
..
MCParser Give AsmParser an option to control whether it finalizes 2010-04-05 23:15:42 +00:00
CMakeLists.txt MC/Mach-O: Move to MachObjectWriter.{h,cpp}. 2010-03-19 10:43:15 +00:00
MachObjectWriter.cpp MC/Mach-O/x86_64: Support @GOTPCREL on symbols, even for non-PCrel relocations! 2010-03-29 23:56:40 +00:00
Makefile make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
MCAsmInfo.cpp eliminate the magic AbsoluteDebugSectionOffsets MAI hook, 2010-04-04 23:22:29 +00:00
MCAsmInfoCOFF.cpp eliminate the magic AbsoluteDebugSectionOffsets MAI hook, 2010-04-04 23:22:29 +00:00
MCAsmInfoDarwin.cpp move three lowering hooks from MAI to TLOF and make one of them 2010-03-10 07:20:42 +00:00
MCAsmStreamer.cpp fix an ugly wart in the MCInstPrinter api where the 2010-04-04 05:04:31 +00:00
MCAssembler.cpp llvm-mc: Add a -mc-relax-all option, which relaxes every fixup. We always need 2010-03-25 22:49:09 +00:00
MCCodeEmitter.cpp MCCodeEmitter: Add target independent fixup flag for is-pc-relative. 2010-03-19 10:43:23 +00:00
MCContext.cpp Rip out the 'is temporary' nonsense from the MCContext interface to 2010-03-30 18:10:53 +00:00
MCDisassembler.cpp No newline at end of files. 2009-10-05 18:43:19 +00:00
MCExpr.cpp Rip out the 'is temporary' nonsense from the MCContext interface to 2010-03-30 18:10:53 +00:00
MCInst.cpp MCInst: Add ::dump_pretty. 2010-03-22 21:49:34 +00:00
MCInstPrinter.cpp add a new MCInstPrinter::getOpcodeName interface, when it is 2010-02-11 22:39:10 +00:00
MCMachOStreamer.cpp llvm-mc: Add a -mc-relax-all option, which relaxes every fixup. We always need 2010-03-25 22:49:09 +00:00
MCNullStreamer.cpp make the NullStreamer set the section on a label when emitted so that isDefined() works. 2010-03-09 23:12:18 +00:00
MCObjectWriter.cpp MC/Mach-O: Move to MachObjectWriter.{h,cpp}. 2010-03-19 10:43:15 +00:00
MCSection.cpp Put MCSectionCOFF::Name into the MCContext instead of leaking it. 2010-03-22 23:26:12 +00:00
MCSectionELF.cpp Simplify some uses of str(n)cmp with StringRef. 2010-01-22 18:21:23 +00:00
MCSectionMachO.cpp Pass StringRef by value. 2009-11-06 10:58:06 +00:00
MCStreamer.cpp add a twine form of MCStreamer::EmitRawText, and mc'ize 2010-04-03 22:12:35 +00:00
MCSymbol.cpp now that MCSymbol::print doesn't use it's MAI argument, we can 2010-01-17 21:43:43 +00:00
MCValue.cpp MCValue: Change to holding MCSymbolRefExprs instead of MCSymbols, we will need this for accessing to symbol modifiers. 2010-03-18 00:59:10 +00:00
TargetAsmBackend.cpp MC/Darwin: Add a new target hook for whether the target uses "reliable" symbol differences, basically whether the assembler should attempt to understand atoms when using scattered symbols. 2010-03-18 00:58:53 +00:00