Age | Commit message (Expand) | Author |
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 |
2009-08-19 | Add a fast path for setName("") on an unnamed value. | Daniel Dunbar |
2009-08-19 | Make a SmallVector size more reasonable. | Daniel Dunbar |
2009-08-18 | Privatize the ValueHandle global map. Because this is used so heavily throug... | Owen Anderson |
2009-08-13 | Push LLVMContexts through the IntegerType APIs. | Owen Anderson |
2009-08-11 | Fix a typo in an assertion string. | Dan Gohman |
2009-08-04 | revert r78048, it isn't worth using assertingvh here. | Chris Lattner |
2009-08-04 | switch ValueMap to using AssertingVH. This is an old patch I had laying | Chris Lattner |
2009-07-29 | Keep track of named mdnodes in a Module using an ilist. | Devang Patel |
2009-07-28 | Rename MDNode.h header. It defines MDnode and other metadata classes. | Devang Patel |
2009-07-26 | Make sure getName().data() is always null terminated. | Daniel Dunbar |
2009-07-26 | Rewrite getName{Start,End,Len} in terms of getName(), instead of vice-versa. | Daniel Dunbar |
2009-07-26 | Simplify. | Daniel Dunbar |
2009-07-26 | Remove Value::setName(const char*, unsigned). | Daniel Dunbar |
2009-07-26 | Remove Value::setName(const char*). | Daniel Dunbar |
2009-07-25 | Remove Value::{isName, getNameRef}. | Daniel Dunbar |
2009-07-25 | Initial update to VMCore to use Twines for string arguments. | Daniel Dunbar |
2009-07-24 | Move more to raw_ostream. | Daniel Dunbar |
2009-07-23 | Add llvm::Value::getNameRef, for help in API migration. | Daniel Dunbar |
2009-07-22 | Introduce MetadataBase, a base class for MDString and MDNode. | Devang Patel |
2009-07-22 | Get rid of the Pass+Context magic. | Owen Anderson |
2009-07-20 | Revert the addition of hasNoPointerOverflow to GEPOperator. | Dan Gohman |
2009-07-18 | Fix this accidentally inverted condition. | Dan Gohman |
2009-07-17 | Convert more code to use Operator instead of explicitly handling both | Dan Gohman |
2009-07-17 | Make BasicAliasAnalysis and Value::getUnderlyingObject use | Dan Gohman |
2009-07-17 | Add a SubclassOptionalData field to Value. See the doxygen comment for | Dan Gohman |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin |
2009-07-08 | Fix the AssertingVH unittests. | Jeffrey Yasskin |