aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AsmWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add an "msasm" flag to inline asm as suggested in PR 5125.Dale Johannesen2009-10-131-0/+2
* Do not assume that the module is set.Devang Patel2009-10-071-15/+18
* Check for null MDNode element while printing comment.Devang Patel2009-09-301-1/+1
* Print tag name for MDNodes that are used to encode debug info. Devang Patel2009-09-301-1/+29
* Parse custom metadata attached with an instruction.Devang Patel2009-09-291-1/+1
* s/class Metadata/class MetadataContext/gDevang Patel2009-09-281-7/+7
* Do not hardcode metadata names.Devang Patel2009-09-281-4/+18
* Remove dead code.Devang Patel2009-09-281-5/+1
* Give MachineMemOperand an operator<<, factoring out code fromDan Gohman2009-09-231-1/+13
* Tabs -> spaces, and remove trailing whitespace.Daniel Dunbar2009-09-201-119/+119
* Print debug info attached with an instruction.Devang Patel2009-09-161-1/+17
* Remove some unused variables and methods warned about byDuncan Sands2009-09-061-2/+0
* back out my recent commit (r80858), it seems to break self-hosting buildbot's...Gabor Greif2009-09-031-4/+3
* re-commit r66920 (which has been backed out in r66953) I may have more luck t...Gabor Greif2009-09-031-3/+4
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-231-16/+0
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-231-9/+0
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-231-1/+2
* Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrapDan Gohman2009-08-201-2/+2
* the MinPad argument to PadToColumn only really makes sense to be 1,Chris Lattner2009-08-171-3/+3
* Fix printing of instructions with null operands.Dan Gohman2009-08-171-1/+1
* Always print at least one space before adding a comment.Dan Gohman2009-08-171-3/+3
* Make formatted_raw_ostream restore the buffer settings of theDan Gohman2009-08-131-10/+0
* Take the fast path for any named value and any GlobalValue, which doesn'tDan Gohman2009-08-131-1/+2
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-7/+9
* Fix a 4x slowdown in llc -asm-verbose caused by the use ofDan Gohman2009-08-131-18/+27
* Change the indentation for LLVM Assembly files from 1 tab to 2 spaces.Dan Gohman2009-08-131-4/+4
* Now that numbered types have their number printed, it's no longerDan Gohman2009-08-121-18/+12
* Extend the AsmWriter to print unnamed numbered types as "%0 = type ..."Dan Gohman2009-08-121-6/+4
* Make AsmWriter more careful with formatted_raw_ostream so thatDan Gohman2009-08-121-14/+22
* Make LLVM Assembly dramatically easier to read by aligning the comments,Dan Gohman2009-08-121-24/+36
* Fix printing of Alloca instructions with null operands.Dan Gohman2009-07-311-1/+1
* Check null NameMDNode elements.Devang Patel2009-07-301-4/+8
* print single NamedMDNode.Devang Patel2009-07-301-3/+45
* Print named metadata.Devang Patel2009-07-291-0/+25
* Rename MDNode.h header. It defines MDnode and other metadata classes.Devang Patel2009-07-281-1/+1
* Add a new keyword 'inbounds' for use with getelementptr. See theDan Gohman2009-07-271-0/+3
* Initialize mdnNext.Devang Patel2009-07-271-1/+1
* Change the assembly syntax for nsw, nuw, and exact, putting themDan Gohman2009-07-271-7/+7
* Remove Value::{isName, getNameRef}.Daniel Dunbar2009-07-251-24/+17
* Convert a few more things to use raw_ostream.Dan Gohman2009-07-251-2/+1
* MDStringDevang Patel2009-07-231-2/+2
* Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA...Devang Patel2009-07-231-0/+5
* Rename the new unsigned and signed keywords to nuw and nsw,Dan Gohman2009-07-221-2/+2
* Do not print "metadata" twice while printing MDString.Devang Patel2009-07-221-2/+0
* Introduce MetadataBase, a base class for MDString and MDNode.Devang Patel2009-07-221-8/+17
* Assembly and Bitcode support for unsigned/signed overflow flags andDan Gohman2009-07-201-0/+18
* Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling2009-07-201-12/+13
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-6/+6
* Change printInstruction to not print a trailing newline. Value::dumpDan Gohman2009-07-131-2/+3
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-5/+5