summaryrefslogtreecommitdiff
path: root/lib/VMCore/AsmWriter.cpp
Commit message (Expand)AuthorAge
* add a hack to temporarily allow pseudo source values.Chris Lattner2008-08-24
* minor cleanups.Chris Lattner2008-08-23
* Switch the asmprinter (.ll) and all the stuff it requires over toChris Lattner2008-08-23
* more cleanups, random methods shouldn't return ostreams.Chris Lattner2008-08-19
* more cleanup, eliminate getLLVMName when printing outChris Lattner2008-08-19
* random cleanups, factor some printing code for linkage and visibilityChris Lattner2008-08-19
* Change WriteTypeSymbolic/WriteAsOperand to return void instead of Chris Lattner2008-08-19
* rearrange code and make more legible.Chris Lattner2008-08-19
* put SlotTracker in an anon namespace since it is private.Chris Lattner2008-08-19
* Reid had to call this class "slot machine" out of some strange referenceChris Lattner2008-08-19
* Fix a bug daniel pointed out to me, where asmprinter startedChris Lattner2008-08-18
* Rename some GC classes so that their roll will hopefully be clearer.Gordon Henriksen2008-08-17
* getLLVMName is only used for types now, which always pass in LocalPrefix. Sp...Chris Lattner2008-08-17
* switch valuemap's from std::map to densemap. This speeds up llvm-disChris Lattner2008-08-17
* avoid an extraneous std::string constructionChris Lattner2008-08-17
* Rework the routines that convert AP[S]Int into a string. Now, instead ofChris Lattner2008-08-17
* avoid string thrashing when formatting names in output. ThisChris Lattner2008-08-17
* random cleanups.Chris Lattner2008-08-17
* Add read/write support for X86's sseregparm.Dale Johannesen2008-08-13
* Fix the AsmWriter to not print extra spaces after parameter attributes.Dan Gohman2008-08-05
* Enable first-class aggregates support.Dan Gohman2008-07-23
* Prevent a crash in debug dumps.Dale Johannesen2008-06-03
* AsmWriter support for insertvalue/extractvalue. These instructions canDan Gohman2008-05-31
* Add CommonLinkage; currently tentative definitionsDale Johannesen2008-05-14
* Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRefNate Begeman2008-05-12
* Update comments.Dan Gohman2008-05-12
* Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky2008-04-25
* more fallout from Nicholas' asmprinter patch.Chris Lattner2008-04-22
* another bug introduced in r47802 by nicholas, for no apparent reason.Chris Lattner2008-04-21
* fix a bug introduced by Nicholas' "unwinds to" stuff: weChris Lattner2008-04-21
* Don't read off end of the input array.Dale Johannesen2008-04-16
* Support chained aliases for LLVM IR printing. This fixes PR2145Anton Korobeynikov2008-03-22
* Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner2008-03-12
* Turn unwind_to into "unwinds to".Nick Lewycky2008-03-10
* Print types for all ret operands.Devang Patel2008-03-04
* Add an unwind_to field to basic blocks, making them Users instead of Values.Nick Lewycky2008-03-02
* print getresult operand and its type directly.Devang Patel2008-02-23
* Use dyn_cast instead of isa + cast.Devang Patel2008-02-23
* To support multiple return values, now ret instruction supports multiple oper...Devang Patel2008-02-23
* Split ParameterAttributes.h, putting the complicatedDale Johannesen2008-02-22
* Print getresult instruction properly.Devang Patel2008-02-22
* Print ret instruction that returns aggregates.Devang Patel2008-02-22
* Expand ParameterAttributes to 32 bits (in preparationDale Johannesen2008-02-19
* Add explicit keywords.Dan Gohman2008-01-29
* Reformatted. It was confusing the other way. No functionality change.Bill Wendling2008-01-15
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Don't forget to print address space qualifiers when printing out the type tab...Christopher Lamb2007-12-18
* Implement address space attribute for LLVM pointer types. Address spaces are Christopher Lamb2007-12-11
* Adding a collector name attribute to Function in the IR. These Gordon Henriksen2007-12-10
* Fix PR1146: parameter attributes are longer part ofDuncan Sands2007-11-27