Age | Commit message (Expand) | Author |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth |
2012-10-08 | Move TargetData to DataLayout. | Micah Villmow |
2012-05-19 | Move CallbackVHs dtor inline, it can be devirtualized in many cases. Move the... | Benjamin Kramer |
2012-04-10 | The MDString class stored a StringRef to the string which was already in a | Bill Wendling |
2012-04-08 | Allow subclasses of the ValueHandleBase to store information as part of the | Bill Wendling |
2012-03-14 | Extend the inline cost calculation to account for bonuses due to | Chandler Carruth |
2012-03-10 | Refactor some methods to look through bitcasts and GEPs on pointers into | Chandler Carruth |
2012-01-23 | Make Value::isDereferenceablePointer() handle unreachable code blocks. (This | Nick Lewycky |
2011-12-05 | Add a little heuristic to Value::isUsedInBasicBlock to speed it up for small ... | Benjamin Kramer |
2011-11-15 | Remove Value::getNameStr. It has been deprecated for a while and provides no ... | Benjamin Kramer |
2011-11-15 | Remove all remaining uses of Value::getNameStr(). | Benjamin Kramer |
2011-07-18 | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner |
2011-07-15 | remove the old and dangerous uncheckedReplaceAllUsesWith method, | Chris Lattner |
2011-07-09 | Land the long talked about "type system rewrite" patch. This | Chris Lattner |
2011-06-23 | Reinstate r133513 (reverted in r133700) with an additional fix for a | Jay Foad |
2011-06-23 | Revert r133513: | Eric Christopher |
2011-06-21 | Reinstate r133435 and r133449 (reverted in r133499) now that the clang | Jay Foad |
2011-06-21 | Revert r133435 and r133449 to appease buildbots. | Chad Rosier |
2011-06-20 | Change how PHINodes store their operands. | Jay Foad |
2011-01-23 | teach Value::isDereferenceablePointer that byval arguments are always | Chris Lattner |
2011-01-16 | Move the implementation of the User class into a new source file, | Jay Foad |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-20 | Revert r122114 (CallbackVH observing use-list changes) because it caused seve... | Owen Anderson |
2010-12-18 | Add support to CallbackVH to receive notification when a Value's use-list cha... | Owen Anderson |
2010-12-15 | Move Value::getUnderlyingObject to be a standalone | Dan Gohman |
2010-11-11 | Doxygenify | Nick Lewycky |
2010-11-11 | Factor out Instruction::isSafeToSpeculativelyExecute's code for | Dan Gohman |
2010-07-27 | After updating value handles for RAUW, check that no weak or tracking handles | Duncan Sands |
2010-07-24 | Clarify that if a new value handle is added while dropping value handles | Duncan Sands |
2010-07-21 | Make NamedMDNode not be a subclass of Value, and simplify the interface | Dan Gohman |
2010-06-28 | Fix Value::stripPointerCasts and BasicAA to avoid trouble on | Dan Gohman |
2010-03-25 | rename use_const_iterator to const_use_iterator for consistency's sake | Gabor Greif |
2010-02-16 | Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move some | Duncan Sands |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-01-25 | Change Value::getUnderlyingObject to have the MaxLookup value specified as a | Bob Wilson |
2010-01-13 | Introduce Twine::toStringRef, a variant of toVector which avoids the copy if the | Benjamin Kramer |
2010-01-05 | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer |
2010-01-05 | Change errs() to dbgs(). | David Greene |
2009-12-29 | When doing v1->RAUW(v2), don't do anything to metadata. We don't know | Chris Lattner |
2009-12-28 | This is a major cleanup of the instruction metadata interfaces that | Chris Lattner |
2009-11-01 | remove a bunch of locking from LLVMContextImpl. Since only one thread | Chris Lattner |
2009-10-17 | Remove unnecessary include. | Daniel Dunbar |
2009-10-13 | Copy metadata when value is RAUW'd. It is debatable whether this is the right... | Devang Patel |
2009-10-12 | Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the | Jeffrey Yasskin |
2009-09-22 | Fix commento. | Daniel Dunbar |
2009-09-22 | Add a TrackingVH value handle. | Daniel Dunbar |
2009-09-20 | Strip trailing whitespace. | Daniel Dunbar |
2009-09-17 | Initialize HasMetadata to zero. | Benjamin Kramer |
2009-09-16 | Add llvm::Metadata to manage metadata used in a context. | Devang Patel |
2009-08-27 | Teach getUnderlyingObject and skipPointerCasts about GlobalAliases. | Dan Gohman |