Define the new operator<< for sets into namespace std, so that
[oota-llvm.git] / lib / VMCore / AsmWriter.cpp
2009-12-18 Victor HernandezFormalize MDNode's function-localness:
2009-12-07 Anton KorobeynikovAdd MSP430 interrupt calling conv. No functionality...
2009-12-04 Victor HernandezAvoid creating a metadata slot for all metadata that...
2009-12-04 Victor HernandezFix crasher when N->getElement(n) is NULL
2009-12-04 Victor HernandezTeach AsmWriter to write inline (not via a global metad...
2009-11-16 Evan ChengSpecial case FixedStackPseudoSourceValueVal as well...
2009-11-13 Eric ChristopherRemove extraneous commit.
2009-11-13 Eric ChristopherPrint out something, even if it's non-parseable later...
2009-11-01 Chris LattnerRevert 85678/85680. The decision is to stay with the...
2009-10-31 Chris LattnerMake blockaddress(@func, null) be valid, and make ...
2009-10-30 Dan GohmanSimplify this code and avoid an extra space character...
2009-10-28 Chris Lattnerasmprinter support for BlockAddress.
2009-10-28 Chris Lattnerrename indbr -> indirectbr to appease the residents...
2009-10-27 Chris Lattneradd enough support for indirect branch for the feature...
2009-10-27 Chris LattnerType.h doesn't need to #include LLVMContext.h
2009-10-23 Victor HernandezRemove AllocationInst. Since MallocInst went away...
2009-10-22 Devang PatelFix getMDs() interface such that it does not expose...
2009-10-22 Devang PatelUsing TrackingVH instead of WeakVH or WeakMetadataVH.
2009-10-22 Devang PatelFix getHandlerNames() interface. Now it populate clinet...
2009-10-21 Dale JohannesenRename msasm to alignstack per review.
2009-10-21 Devang PatelDo not use SmallVector to store MDNode elements.
2009-10-13 Dale JohannesenAdd an "msasm" flag to inline asm as suggested in PR...
2009-10-07 Devang PatelDo not assume that the module is set.
2009-09-30 Devang PatelCheck for null MDNode element while printing comment.
2009-09-30 Devang PatelPrint tag name for MDNodes that are used to encode...
2009-09-29 Devang PatelParse custom metadata attached with an instruction.
2009-09-28 Devang Patels/class Metadata/class MetadataContext/g
2009-09-28 Devang PatelDo not hardcode metadata names.
2009-09-28 Devang PatelRemove dead code.
2009-09-23 Dan GohmanGive MachineMemOperand an operator<<, factoring out...
2009-09-20 Daniel DunbarTabs -> spaces, and remove trailing whitespace.
2009-09-16 Devang PatelPrint debug info attached with an instruction.
2009-09-06 Duncan SandsRemove some unused variables and methods warned about by
2009-09-03 Gabor Greifback out my recent commit (r80858), it seems to break...
2009-09-03 Gabor Greifre-commit r66920 (which has been backed out in r66953...
2009-08-23 Chris Lattnereliminate the std::ostream form of WriteAsOperand and...
2009-08-23 Chris Lattnerremove the std::ostream version of module and type...
2009-08-23 Chris Lattnereliminate the "Value" printing methods that print to...
2009-08-20 Dan GohmanRename hasNoUnsignedOverflow and hasNoSignedOverflow...
2009-08-17 Chris Lattnerthe MinPad argument to PadToColumn only really makes...
2009-08-17 Dan GohmanFix printing of instructions with null operands.
2009-08-17 Dan GohmanAlways print at least one space before adding a comment.
2009-08-13 Dan GohmanMake formatted_raw_ostream restore the buffer settings...
2009-08-13 Dan GohmanTake the fast path for any named value and any GlobalVa...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-08-13 Dan GohmanFix a 4x slowdown in llc -asm-verbose caused by the...
2009-08-13 Dan GohmanChange the indentation for LLVM Assembly files from...
2009-08-12 Dan GohmanNow that numbered types have their number printed,...
2009-08-12 Dan GohmanExtend the AsmWriter to print unnamed numbered types...
2009-08-12 Dan GohmanMake AsmWriter more careful with formatted_raw_ostream...
2009-08-12 Dan GohmanMake LLVM Assembly dramatically easier to read by align...
2009-07-31 Dan GohmanFix printing of Alloca instructions with null operands.
2009-07-30 Devang PatelCheck null NameMDNode elements.
2009-07-30 Devang Patelprint single NamedMDNode.
2009-07-29 Devang PatelPrint named metadata.
2009-07-28 Devang PatelRename MDNode.h header. It defines MDnode and other...
2009-07-27 Dan GohmanAdd a new keyword 'inbounds' for use with getelementptr...
2009-07-27 Devang PatelInitialize mdnNext.
2009-07-27 Dan GohmanChange the assembly syntax for nsw, nuw, and exact...
2009-07-25 Daniel DunbarRemove Value::{isName, getNameRef}.
2009-07-25 Dan GohmanConvert a few more things to use raw_ostream.
2009-07-23 Devang PatelMDString
2009-07-23 Devang PatelDerive MDNode from MetadataBase instead of Constant...
2009-07-22 Dan GohmanRename the new unsigned and signed keywords to nuw...
2009-07-22 Devang PatelDo not print "metadata" twice while printing MDString.
2009-07-22 Devang PatelIntroduce MetadataBase, a base class for MDString and...
2009-07-20 Dan GohmanAssembly and Bitcode support for unsigned/signed overfl...
2009-07-20 Bill WendlingAdd plumbing for the `linker_private' linkage type...
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-13 Dan GohmanChange printInstruction to not print a trailing newline...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-07-08 Devang PatelDrop "constant" from
2009-07-08 Devang PatelUpdate SLotTracker to handle MDNode slots.
2009-07-08 Torok EdwinImplement changes from Chris's feedback.
2009-07-08 Torok EdwinStart converting to new error handling API.
2009-07-01 Devang PatelFix metadata unittests
2009-07-01 Devang PatelDo not print stranded metadata.
2009-07-01 Devang PatelSupport stand alone metadata syntax.
2009-06-16 Anton KorobeynikovAddress review comments: add 3 ARM calling conventions.
2009-05-30 Nick LewyckyGive embedded metadata its own type instead of relying...
2009-05-10 Nick LewyckyMake MDNode use CallbackVH. Also change MDNode to store...
2009-04-25 Chris LattnerAllow aliasee to be a GEP or bitcast instead of just...
2009-04-20 Dan GohmanDon't discard an AssemblyAnnotationWriter when writing...
2009-04-13 Chris LattnerAdd a new "available_externally" linkage type. This...
2009-04-04 Nick LewyckyRemove bogus include.
2009-04-04 Nick LewyckyAdd support for embedded metadata to LLVM. This introdu...
2009-03-23 Dale JohannesenFix internal representation of fp80 to be the
2009-03-23 Dan GohmanNow that errs() is properly non-buffered, there's no...
2009-03-19 Nick LewyckyFix a couple glaring whitespace issues. This file isn...
2009-03-15 Nick LewyckyRemove obviously redundant call.
2009-03-13 Bill WendlingRevert r66920. It was causing failures in the self...
2009-03-13 Gabor GreifSecond installment of "BasicBlock operands to the back"
2009-03-11 Duncan SandsIt makes no sense to have a ODR version of common
2009-03-11 Duncan SandsRemove the one-definition-rule version of extern_weak
2009-03-07 Duncan SandsIntroduce new linkage types linkonce_odr, weak_odr...
2009-03-01 Chris Lattnersimplify handling "don't print top level name" processi...
2009-03-01 Chris Lattnerwalk type symbol table also, so we get:
2009-03-01 Chris LattnerFix a long-standing bug and misfeature of the disassemb...
2009-02-28 Chris Lattnermove type name population out of TypePrinting class...
2009-02-28 Chris Lattnerswitch to densemap for pointer->word map.
next