Add FIXMEs.
[oota-llvm.git] / lib / Linker /
2009-07-01 Owen AndersonMake the use of const with respect to LLVMContext sane...
2009-07-01 Owen AndersonHold the LLVMContext by reference rather than by pointer.
2009-07-01 Owen AndersonAdd a pointer to the owning LLVMContext to Module....
2009-04-13 Chris LattnerAdd a new "available_externally" linkage type. This...
2009-03-08 Duncan SandsApply ODR linkage changes accidentally dropped during
2009-03-07 Duncan SandsIntroduce new linkage types linkonce_odr, weak_odr...
2009-03-03 Mikhail GlushenkovOops.
2009-03-03 Mikhail Glushenkov80-column violation + trailing whitespace.
2009-01-15 Rafael EspindolaAdd the private linkage.
2009-01-09 Misha BrukmanRemoved trailing whitespace from Makefiles.
2008-10-25 Dan GohmanMake comments and code for QuietWarnings and QuietErrors
2008-10-15 Anton KorobeynikovAlso properly handle linking of strong alias and weak...
2008-10-15 Anton KorobeynikovProperly handle linking of strong alias with weak funct...
2008-09-29 Duncan SandsRename isWeakForLinker to mayBeOverridden. Use it
2008-09-22 Oscar FuentesInitial support for the CMake build system.
2008-09-09 Anton KorobeynikovMake safer variant of alias resolution routine to be...
2008-09-09 Anton KorobeynikovFix incorrect linker behaviour: we shouldn't resolve...
2008-07-14 Chris LattnerReimplement LinkFunctionProtos in terms of GetLinkageRe...
2008-07-14 Chris Lattnerdon't do any linkage, not even type resolution, of...
2008-07-14 Chris Lattnerimplement linking of globals to functions, in one direction
2008-07-14 Chris Lattnerwrap long lines, remove some code from a non-assert...
2008-07-10 Chris LattnerThe source and dest of an alias are *not* required...
2008-07-07 Dan GohmanMake DenseMap's insert return a pair, to more closely...
2008-07-05 Anton KorobeynikovAdd convenient helper for checking whether global is...
2008-07-05 Anton KorobeynikovOverride weak stuff during linking of aliases. This...
2008-07-05 Anton KorobeynikovProperly link alias and function decls. This fixes...
2008-06-27 Chris Lattnerwhen linking globals, make sure to preserve the address...
2008-06-20 Chris LattnerFix an error handling redefinition of linkonce function...
2008-06-16 Chris LattnerAdd a missing ~ (dtor became ctor) which caused crashes...
2008-06-16 Chris Lattnerstop making PATypeHolder's so crazily.
2008-06-16 Chris Lattneruse a real associative container for type association...
2008-06-16 Chris Lattnerbail out sooner if we have two concrete but different...
2008-06-16 Chris Lattnersimplify some code.
2008-06-16 Chris LattnerApply a patch from Nathan Keynes, which speeds up llvm...
2008-06-16 Chris Lattnerhandle vectors. Any integers that got here would neces...
2008-06-16 Chris LattnerSimplify ResolveTypes by pulling the null case out...
2008-06-16 Chris Lattnersimplify RecursiveResolveTypes and ResolveTypes by...
2008-06-09 Chris Lattneruse 'continue' to make the function linker simpler...
2008-06-09 Chris Lattnerminor changes to short circuit the 'no linkage' case...
2008-06-09 Chris Lattnersimplify function visibility handling.
2008-05-26 Duncan SandsFactor code to copy global value attributes like
2008-05-15 Gabor GreifFix a bunch of 80col violations that arose from the...
2008-05-14 Dale JohannesenAdd CommonLinkage; currently tentative definitions
2008-05-10 Anton KorobeynikovFix linking of internal aliases
2008-05-07 Anton KorobeynikovTurn StripPointerCast() into a method
2008-05-06 Anton KorobeynikovIf weak GlobalVariable was bitcast'ed to different...
2008-04-14 Owen AndersonRevert r49614. As Dan pointed out, some of these aren...
2008-04-13 Owen AndersonReplace calls of the form V1->setName(V2->getName(...
2008-04-06 Gabor GreifAPI changes for class Use size reduction, wave 1.
2008-04-01 Chris LattnerChange the MemoryBuffer::getFile* methods to take just...
2008-03-11 Anton KorobeynikovUltimately resolve aliases during linking, if possible
2008-03-11 Anton KorobeynikovFix thinko: alias always defines new symbol. Even is...
2008-03-10 Anton KorobeynikovAdd sanity checks
2008-03-10 Anton KorobeynikovTypo: 'function' => 'alias'
2008-03-10 Anton KorobeynikovSyntactic sugar'ify stuff :)
2008-03-10 Anton KorobeynikovAlways run 'make check' :) Fix fallout from prev. commi...
2008-03-10 Anton KorobeynikovMake error messages to have common style
2008-03-10 Anton KorobeynikovProperly link globals with aliases
2008-03-10 Anton KorobeynikovRemove the LinkGlobal weirderness in common linking...
2008-03-10 Anton KorobeynikovTypo
2008-03-09 Ted KremenekFix some compilation errors on msvc:
2008-03-07 Anton KorobeynikovClarify some important bits
2008-03-07 Anton KorobeynikovSmall cleanup: propagate thread-localness via generic...
2008-03-05 Anton KorobeynikovMissed patch from my last commit
2008-03-05 Anton KorobeynikovResolve aliases to aliasees, where possible
2008-03-05 Anton KorobeynikovHandle functions as targets during linking of aliases...
2008-03-05 Anton KorobeynikovTry hard to link aliases. Checks can be too strict...
2008-03-05 Anton KorobeynikovRemember the source->dest mapping when copying aliases...
2008-03-05 Anton KorobeynikovClarify the state-of-the-art
2008-03-04 Anton KorobeynikovProperly populate lists of defined/undefined symbols...
2008-02-27 Lauro Ramos VenancioEmit an error when a library is not found. It is the...
2008-02-20 Anton KorobeynikovAnd final pack of warnings silencing
2008-02-19 Chris Lattnerrandom cleanups.
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-29 Chris Lattnerremove attribution from lib Makefiles.
2007-12-27 Anton KorobeynikovIgnore functions with internal linkages during linking...
2007-12-25 Gordon HenriksenFixing several transforms which would drop the collecto...
2007-11-27 Duncan SandsFix PR1146: parameter attributes are longer part of
2007-10-08 Dan GohmanUse correct parentheses with the '&& "..."' idiom in...
2007-08-19 Chris LattnerFix PR1611 - Visibility should be ignored for a declaration
2007-08-16 Reid SpencerImprove error handling in the linker by:
2007-08-16 Reid SpencerEnsure that error messages a propagated from calls...
2007-08-08 Reid SpencerAllow the filename "-" to be a place holder for stdin...
2007-07-22 Reid SpencerReport an error if one occurs in releaseModule.
2007-07-06 Gabor Greifeliminate residual cruft related to recognizing bytecode
2007-07-05 Gabor GreifHere is the bulk of the sanitizing.
2007-06-28 Lauro Ramos VenancioFix a bug in my previous patch.
2007-06-28 Lauro Ramos VenancioWhen linking two modules, we should copy the alias.
2007-06-06 Lauro Ramos VenancioPropagate alignment, section name and visibility when...
2007-05-06 Chris Lattnerswitch this to bitcode instead of bytecode
2007-05-06 Chris Lattneradd bitcode support
2007-04-30 Reid SpencerIf an archive is not recognized as an LLVM bytecode...
2007-04-30 Reid SpencerDependent libraries could be native too.
2007-04-29 Anton KorobeynikovImplement visibility checking during linking. Also...
2007-04-12 Lauro Ramos VenancioImplement the "thread_local" keyword.
2007-04-11 Reid SpencerFor PR1146:
2007-04-04 Reid SpencerFor PR1302:
2007-04-04 Reid SpencerFor PR1302:
2007-02-15 Reid SpencerFor PR1195:
2007-02-11 Chris Lattnersimplify this code by using value::takename
next