summaryrefslogtreecommitdiff
path: root/lib/VMCore/AsmWriter.cpp
AgeCommit message (Expand)AuthorFilesLines
2005-03-15stop using arg_frontChris Lattner1-1/+1
2005-03-15This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner1-6/+6
2005-03-02Fix the spelling of the word `the'Misha Brukman1-1/+1
2005-03-02Print the module ID as a comment.Chris Lattner1-0/+6
2005-02-24Fix some problems where the verifier would crash on invalid input instead ofChris Lattner1-3/+6
2005-02-09Fix test/Regression/Assembler/2005-02-09-AsmWriterStoreBug.llChris Lattner1-1/+1
2005-02-01Update for API change.Chris Lattner1-1/+1
2005-01-04To not break TBAA rules, use a union.Chris Lattner1-5/+9
2004-12-10Fix writer to properly quote label names when they don't containAlkis Evlogimenos1-3/+7
2004-12-05When printing out a function, make sure that local and global symbolsChris Lattner1-0/+3
2004-11-15Remove extra space charMisha Brukman1-1/+1
2004-11-14GhostLinkage not allowed in LLVM AsmWriter, eitherMisha Brukman1-0/+6
2004-10-16Add support for undef and unreachableChris Lattner1-0/+3
2004-09-14Okay, the list of link-time passes wasn't such a hot idea. Its prone toReid Spencer1-14/+0
2004-09-14Don't print newlines between passes in the pass list.Chris Lattner1-8/+8
2004-09-14Don't print newlines between each library in the deplibs list.Chris Lattner1-6/+6
2004-09-13Add support for the link-time pass list to Modules.Reid Spencer1-0/+14
2004-09-01Changes For Bug 352Reid Spencer1-2/+2
2004-08-29Add an assert to cature null Operands. It is better to catch it here thanReid Spencer1-0/+1
2004-08-20Fix a bug found exposed by: Regression/Other/2004-08-20-PackedControlFlow.llReid Spencer1-1/+5
2004-08-20Packed types, brought to you by Brad JonesBrian Gaeke1-0/+23
2004-08-16Fix PR422.Reid Spencer1-2/+11
2004-07-29Fix #includes of i*.h files => Instructions.h as per PR403Misha Brukman1-4/+1
2004-07-25Avoid use of size(), which counts, in favor of other mechanisms.Reid Spencer1-4/+5
2004-07-25Adjust to new Module.h interface for dependent librariesReid Spencer1-8/+12
2004-07-25bug 263:Reid Spencer1-0/+11
2004-07-18Shrink some code.Reid Spencer1-4/+1
2004-07-17bug 122:Reid Spencer1-23/+19
2004-07-15Fixes for PR341Chris Lattner1-11/+11
2004-07-13Make Argument::print more resilient to non-verifiable IRChris Lattner1-1/+2
2004-07-04Adjust the slot machine to handle Types separately from Values. This wasReid Spencer1-25/+171
2004-06-26Don't call getValueType directly. the LLVM optimizer will turn it into the s...Chris Lattner1-10/+12
2004-06-21Use a reference instead of a pointer for the ostream. The pointer was onlyMisha Brukman1-103/+102
2004-06-18Fix printing of Argument objects, problem found by Patrick MeredithChris Lattner1-1/+1
2004-06-17Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner1-1/+1
2004-06-15Do not dereference end iterators. It's really bad for the asmwriter's health.Chris Lattner1-1/+4
2004-06-09Tolerate more errorsChris Lattner1-1/+2
2004-06-09Make the asmwriter much more tolerant of errors (which are common when workingChris Lattner1-16/+23
2004-06-09Made it possible for the printInfoComment method to invoke getSlot inReid Spencer1-17/+16
2004-06-04Squelch a warningChris Lattner1-1/+2
2004-06-04* No more CachedWriter::setStream()Misha Brukman1-52/+47
2004-06-01Modified calcTypeName() so that it does not allocate a std::string forJohn Criswell1-24/+37
2004-05-27Clean up a comment.Reid Spencer1-1/+1
2004-05-26Several clean ups suggested by Chris: remove tabs, make SlotMachine do lazyReid Spencer1-94/+97
2004-05-26Part of bug 122. Removed dependency of AsmWriter on SlotCalculator byReid Spencer1-52/+426
2004-05-25Document a couple functions.Reid Spencer1-0/+5
2004-05-25Convert to SymbolTable's new iteration interface.Reid Spencer1-29/+34
2004-04-28class AssemblyWriter:Misha Brukman1-103/+109
2004-04-28* Add ability to print out type as symbolicMisha Brukman1-3/+15
2004-03-12Print select instructions correctlyChris Lattner1-2/+3