aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AsmWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* rename 'Result' to 'OS' in CalcTypeName for consistencyChris Lattner2009-02-281-37/+37
* do not embed the raw_ostream into TypePrinting, pass it as an argument to pri...Chris Lattner2009-02-281-52/+43
* stop calling Type::getDescription().Chris Lattner2009-02-281-12/+15
* simplificationsChris Lattner2009-02-281-6/+8
* Change WriteTypeSymbolic to not put a space out before types, also, removeChris Lattner2009-02-281-18/+6
* make CalcTypeName take a stream instead of a string to concat onto,Chris Lattner2009-02-281-55/+49
* remove a bunch of nearly-duplicated code.Chris Lattner2009-02-281-63/+18
* fix indentation, remove dead integer case.Chris Lattner2009-02-281-64/+59
* pull calcTypeName into TypePrinting class, make its type stackChris Lattner2009-02-281-12/+16
* inline method into its only use and simplify the result.Chris Lattner2009-02-281-11/+4
* simplify conditionChris Lattner2009-02-281-7/+10
* start refactoring the .ll printer: introduce a new TypePrinting classChris Lattner2009-02-281-310/+302
* add proper asmwriter and asmparser support for anonymous functions.Chris Lattner2009-02-181-8/+2
* Don't print extra spaces in vector and array constants. This makesDan Gohman2009-02-111-4/+2
* make sure that BranchInst::getSuccessor() does not assert in cast<>Gabor Greif2009-02-091-4/+5
* back out my previous change, it exposes a latent bug. investigatingGabor Greif2009-01-311-5/+4
* use precise accessorsGabor Greif2009-01-311-4/+5
* Do not use host floating point types when emittingDale Johannesen2009-01-211-2/+12
* Add the private linkage.Rafael Espindola2009-01-151-0/+1
* add comment to explain my previous commit, as asked by ChrisNuno Lopes2009-01-151-0/+2
* fix crash in the case when some arg is nullNuno Lopes2009-01-141-1/+1
* Reimplement the old and horrible bison parser for .ll files with a niceChris Lattner2009-01-021-3/+2
* Have PseudoSourceValue override Value::dump, so that it worksDan Gohman2008-12-031-2/+1
* Use utohex_buffer instead of utohexstr to avoid creating a temporaryChris Lattner2008-11-101-1/+2
* Reuse PrintEscapedString for printing names in .llDaniel Dunbar2008-10-281-28/+21
* Privatize PrintModulePass and PrintFunctionPass and addDaniel Dunbar2008-10-211-8/+0
* Fix a missing space after the return type in invoke statements.Dan Gohman2008-10-151-3/+3
* Prevent assert when using '"' in names (via hexadecimal).Daniel Dunbar2008-10-141-2/+1
* Change getLLVMName to use raw_ostream & PrintLLVMName.Daniel Dunbar2008-10-141-59/+15
* Rename APFloat::convertToAPInt to bitcastToAPInt toDale Johannesen2008-10-091-1/+1
* add a new form of Type::dump that takes a module for type names,Chris Lattner2008-10-011-0/+8
* Make some implicit conversions explicit, to avoid compiler warnings.Dan Gohman2008-10-011-2/+2
* Don't prepend a space character for constants in Value::print.Dan Gohman2008-10-011-1/+1
* Support inreg, zext and sext as return value attributes.Devang Patel2008-09-291-7/+9
* Implement function notes as function attributes. Devang Patel2008-09-261-28/+0
* Now Attributes are divided in three groupsDevang Patel2008-09-261-10/+18
* Fix missing whitespace in the printing of function notes.Dan Gohman2008-09-261-3/+3
* Add "inreg" field to CallSDNode (doesn't increaseDale Johannesen2008-09-261-3/+0
* Large mechanical patch.Devang Patel2008-09-251-23/+23
* Avoid a spurious extra space character when printing empty structs.Dan Gohman2008-09-251-3/+4
* Put FN_NOTE_AlwaysInline and others in FnAttr namespace.Devang Patel2008-09-241-3/+3
* Move FN_NOTE_AlwaysInline and other out of ParamAttrs namespace.Devang Patel2008-09-231-3/+3
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-231-6/+6
* Use parameter attribute store (soon to be renamed) forDevang Patel2008-09-231-3/+3
* Rationalize the names of passes that print information:Duncan Sands2008-09-231-2/+2
* Add hasNote() to check note associated with a function.Devang Patel2008-09-221-15/+24
* Fix WriteAsOperand to not emit a leading space character. AdjustDan Gohman2008-09-141-30/+56
* Avoid extra comma.Devang Patel2008-09-031-3/+4
* Parse and print opt_size note.Devang Patel2008-09-031-2/+11
* s/FP_AlwaysInline/FN_NOTE_AlwaysInline/gDevang Patel2008-09-021-3/+3