fix a tricky bug in the JIT global variable emitter, that was triggered when JITing...
[oota-llvm.git] / lib / VMCore / AsmWriter.cpp
2008-10-15 Dan GohmanFix a missing space after the return type in invoke...
2008-10-14 Daniel DunbarPrevent assert when using '"' in names (via hexadecimal).
2008-10-14 Daniel DunbarChange getLLVMName to use raw_ostream & PrintLLVMName.
2008-10-09 Dale JohannesenRename APFloat::convertToAPInt to bitcastToAPInt to
2008-10-01 Chris Lattneradd a new form of Type::dump that takes a module for...
2008-10-01 Dan GohmanMake some implicit conversions explicit, to avoid compi...
2008-10-01 Dan GohmanDon't prepend a space character for constants in Value...
2008-09-29 Devang PatelSupport inreg, zext and sext as return value attributes.
2008-09-26 Devang PatelImplement function notes as function attributes.
2008-09-26 Devang PatelNow Attributes are divided in three groups
2008-09-26 Dan GohmanFix missing whitespace in the printing of function...
2008-09-26 Dale JohannesenAdd "inreg" field to CallSDNode (doesn't increase
2008-09-25 Devang Patel Large mechanical patch.
2008-09-25 Dan GohmanAvoid a spurious extra space character when printing...
2008-09-24 Devang PatelPut FN_NOTE_AlwaysInline and others in FnAttr namespace.
2008-09-23 Devang PatelMove FN_NOTE_AlwaysInline and other out of ParamAttrs...
2008-09-23 Devang Patels/ParameterAttributes/Attributes/g
2008-09-23 Devang PatelUse parameter attribute store (soon to be renamed) for
2008-09-23 Duncan SandsRationalize the names of passes that print information:
2008-09-22 Devang PatelAdd hasNote() to check note associated with a function.
2008-09-14 Dan GohmanFix WriteAsOperand to not emit a leading space characte...
2008-09-03 Devang PatelAvoid extra comma.
2008-09-03 Devang PatelParse and print opt_size note.
2008-09-02 Devang Patels/FP_AlwaysInline/FN_NOTE_AlwaysInline/g
2008-09-02 Devang PatelUse bitwise AND.
2008-09-02 Devang PatelPrint function notes.
2008-08-29 Chris LattnerAsmprint nameless instructions as:
2008-08-25 Chris LattnerFix pasto (values -> types) noticed by Josh Conner
2008-08-25 Chris Lattnerflush stream after dumping.
2008-08-24 Chris Lattneradd a hack to temporarily allow pseudo source values.
2008-08-23 Chris Lattnerminor cleanups.
2008-08-23 Chris LattnerSwitch the asmprinter (.ll) and all the stuff it requir...
2008-08-19 Chris Lattnermore cleanups, random methods shouldn't return ostreams.
2008-08-19 Chris Lattnermore cleanup, eliminate getLLVMName when printing out
2008-08-19 Chris Lattnerrandom cleanups, factor some printing code for linkage...
2008-08-19 Chris LattnerChange WriteTypeSymbolic/WriteAsOperand to return void...
2008-08-19 Chris Lattnerrearrange code and make more legible.
2008-08-19 Chris Lattnerput SlotTracker in an anon namespace since it is private.
2008-08-19 Chris LattnerReid had to call this class "slot machine" out of some...
2008-08-18 Chris LattnerFix a bug daniel pointed out to me, where asmprinter...
2008-08-17 Gordon HenriksenRename some GC classes so that their roll will hopefull...
2008-08-17 Chris LattnergetLLVMName is only used for types now, which always...
2008-08-17 Chris Lattnerswitch valuemap's from std::map to densemap. This...
2008-08-17 Chris Lattneravoid an extraneous std::string construction
2008-08-17 Chris LattnerRework the routines that convert AP[S]Int into a string...
2008-08-17 Chris Lattneravoid string thrashing when formatting names in output...
2008-08-17 Chris Lattnerrandom cleanups.
2008-08-13 Dale JohannesenAdd read/write support for X86's sseregparm.
2008-08-05 Dan GohmanFix the AsmWriter to not print extra spaces after param...
2008-07-23 Dan GohmanEnable first-class aggregates support.
2008-06-03 Dale JohannesenPrevent a crash in debug dumps.
2008-05-31 Dan GohmanAsmWriter support for insertvalue/extractvalue. These...
2008-05-14 Dale JohannesenAdd CommonLinkage; currently tentative definitions
2008-05-12 Nate BegemanAdd two new instructions to the llvm IR, vicmp and...
2008-05-12 Dan GohmanUpdate comments.
2008-04-25 Nick LewyckyRemove 'unwinds to' support from mainline. This patch...
2008-04-22 Chris Lattnermore fallout from Nicholas' asmprinter patch.
2008-04-21 Chris Lattneranother bug introduced in r47802 by nicholas, for no...
2008-04-21 Chris Lattnerfix a bug introduced by Nicholas' "unwinds to" stuff: we
2008-04-16 Dale JohannesenDon't read off end of the input array.
2008-03-22 Anton KorobeynikovSupport chained aliases for LLVM IR printing. This...
2008-03-12 Chris LattnerReimplement the parameter attributes support, phase...
2008-03-10 Nick LewyckyTurn unwind_to into "unwinds to".
2008-03-04 Devang PatelPrint types for all ret operands.
2008-03-02 Nick LewyckyAdd an unwind_to field to basic blocks, making them...
2008-02-23 Devang Patelprint getresult operand and its type directly.
2008-02-23 Devang PatelUse dyn_cast instead of isa + cast.
2008-02-23 Devang PatelTo support multiple return values, now ret instruction...
2008-02-22 Dale JohannesenSplit ParameterAttributes.h, putting the complicated
2008-02-22 Devang PatelPrint getresult instruction properly.
2008-02-22 Devang PatelPrint ret instruction that returns aggregates.
2008-02-19 Dale JohannesenExpand ParameterAttributes to 32 bits (in preparation
2008-01-29 Dan GohmanAdd explicit keywords.
2008-01-15 Bill WendlingReformatted. It was confusing the other way. No functio...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-18 Christopher LambDon't forget to print address space qualifiers when...
2007-12-11 Christopher LambImplement address space attribute for LLVM pointer...
2007-12-10 Gordon HenriksenAdding a collector name attribute to Function in the...
2007-11-27 Duncan SandsFix PR1146: parameter attributes are longer part of
2007-11-18 Chris Lattnerprint a call to a fastcc function as:
2007-10-11 Dale JohannesenNext PPC long double bits. First cut at constants.
2007-09-26 Dale JohannesenMake temporaries explicit to avoid premature
2007-09-12 Dale JohannesenRevise previous patch per review comments.
2007-09-06 Dale JohannesenNext round of APFloat changes.
2007-08-19 Chris Lattnersimplify code and print visibility for declarations.
2007-05-22 Reid SpencerReinstate the patch for escaping non-printing character...
2007-05-22 Chris Lattnertemporarily revert reid's asmwriter patch, it is missin...
2007-05-19 Reid SpencerGet the order of the hext digits right!
2007-05-19 Reid SpencerAdjust how LLVM names are produced:
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-04-29 Anton KorobeynikovImplement protected visibility. This partly implements...
2007-04-29 Anton KorobeynikovImplement review feedback
2007-04-28 Anton KorobeynikovImplement review feedback. Aliasees can be either Globa...
2007-04-26 Chris Lattnerprint aliases before functions
2007-04-25 Anton KorobeynikovImplement aliases. This fixes PR1017 and it's dependent...
2007-04-22 Christopher LambPR400 work phase 1. Add attributed load/store instructi...
2007-04-22 Reid SpencerFor PR1146:
2007-04-21 Reid SpencerRevert Christopher Lamb's load/store alignment changes.
next