| Commit message (Expand) | Author | Age | Files | Lines |
* | Typo. | Eric Christopher | 2012-08-14 | 1 | -1/+1 |
* | Move the Metadata merging methods from GVN and make them public in MDNode. | Hal Finkel | 2012-06-16 | 1 | -0/+150 |
* | Don't forget to reset 'first operand' flag when we're setting the MDNodeOpera... | Bill Wendling | 2012-04-26 | 1 | -5/+8 |
* | Cache the hash value of the operands in the MDNode. | Benjamin Kramer | 2012-04-11 | 1 | -0/+5 |
* | The MDString class stored a StringRef to the string which was already in a | Bill Wendling | 2012-04-10 | 1 | -6/+7 |
* | Remove the 'Parent' pointer from the MDNodeOperand class. | Bill Wendling | 2012-04-08 | 1 | -11/+26 |
* | The speedup doesn't appear to have been from this, but was an anomaly of my t... | Bill Wendling | 2012-04-03 | 1 | -1/+0 |
* | Reserve space for the eventual filling of the vector. This gives a small spee... | Bill Wendling | 2012-04-03 | 1 | -4/+3 |
* | I noticed in passing that the Metadata getIfExists method was creating a new | Duncan Sands | 2012-03-31 | 1 | -4/+4 |
* | Add a way to replace a field inside a metadata node. This can be | Eric Christopher | 2012-02-15 | 1 | -0/+5 |
* | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -1/+2 |
* | Using Inst->setMetadata(..., NULL) should be safe to remove metadata even when | Nick Lewycky | 2011-12-27 | 1 | -2/+4 |
* | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 2011-12-20 | 1 | -0/+2 |
* | Push StringRefs through the metadata interface. | Benjamin Kramer | 2011-12-06 | 1 | -2/+2 |
* | Land the long talked about "type system rewrite" patch. This | Chris Lattner | 2011-07-09 | 1 | -0/+1 |
* | PR9214: Convert Metadata API to use ArrayRef. | Jay Foad | 2011-04-21 | 1 | -26/+22 |
* | Add ArrayRef variant. | Devang Patel | 2011-03-04 | 1 | -0/+3 |
* | When an MDNode changes to become identical to another MDNode, | Dan Gohman | 2010-09-28 | 1 | -5/+4 |
* | Scope a varible inside an if statement, to make it clear that | Dan Gohman | 2010-09-28 | 1 | -3/+1 |
* | When a function-local value with function-local metadata uses gets RAUWed with a | Dan Gohman | 2010-09-14 | 1 | -0/+18 |
* | Add comments explaining why it's not necessary to include the | Dan Gohman | 2010-08-30 | 1 | -1/+6 |
* | Don't include the is-function-local bit in the FoldingSetNodeID | Dan Gohman | 2010-08-24 | 1 | -15/+15 |
* | Verify that a non-uniqued non-temporary MDNode is not deleted via | Dan Gohman | 2010-08-23 | 1 | -1/+3 |
* | Use MDNode::destroy(). Fixes a delete/free mismatch. | Benjamin Kramer | 2010-08-21 | 1 | -3/+1 |
* | Add an assert to MDNode::deleteTemporary check that the node being deleted | Dan Gohman | 2010-08-21 | 1 | -1/+3 |
* | Introduce a new temporary MDNode concept. Temporary MDNodes are | Dan Gohman | 2010-08-20 | 1 | -0/+23 |
* | Make NamedMDNode not be a subclass of Value, and simplify the interface | Dan Gohman | 2010-07-21 | 1 | -57/+4 |
* | Disallow null as a named metadata operand. | Dan Gohman | 2010-07-21 | 1 | -1/+1 |
* | Use TrackingVH instead of WeakVH for NamedMDNode's operands, since nodes | Dan Gohman | 2010-07-21 | 1 | -7/+7 |
* | Tidy. | Dan Gohman | 2010-07-21 | 1 | -4/+1 |
* | Rename removeAllMetadata to clearMetadataHashEntries and simplify | Dan Gohman | 2010-07-20 | 1 | -8/+6 |
* | Remove setDbgMetadata and getDbgMetadata; their users have been | Dan Gohman | 2010-07-20 | 1 | -4/+0 |
* | Add support for empty metadata nodes: !{}. | Dan Gohman | 2010-07-13 | 1 | -1/+2 |
* | Add fixme. | Devang Patel | 2010-07-06 | 1 | -0/+1 |
* | Fix a problem exposed by my previous commit and noticed by a release-asserts | Duncan Sands | 2010-05-04 | 1 | -11/+3 |
* | Fix a variant of PR6112 found by thinking about it: when doing | Duncan Sands | 2010-05-04 | 1 | -7/+21 |
* | fix PR6112 - When globalopt (or any other pass) does RAUW(@G, %G), | Chris Lattner | 2010-04-28 | 1 | -2/+15 |
* | rename NewDebugLoc -> DebugLoc, prune #includes in DebugLoc.h. | Chris Lattner | 2010-04-02 | 1 | -3/+3 |
* | Switch the representation of the location in instruction from | Chris Lattner | 2010-04-01 | 1 | -6/+26 |
* | add new apis for getting/setting !dbg metadata on | Chris Lattner | 2010-03-31 | 1 | -0/+4 |
* | Fix a major source of compile-time slowness at -O0 -g by optimizing | Chris Lattner | 2010-03-30 | 1 | -11/+36 |
* | move some method definitions to files that make sense. | Chris Lattner | 2010-03-30 | 1 | -44/+0 |
* | Include isFunctionLocal while calculating folding node set profile for a MDNode. | Devang Patel | 2010-03-25 | 1 | -13/+14 |
* | Include isFunctionLocal while calculating folding node set provide for a MDNode. | Devang Patel | 2010-03-25 | 1 | -0/+1 |
* | Delete MDNodes when LLVMContext is destroyed. Previous attempts: r97918, r97... | Jeffrey Yasskin | 2010-03-13 | 1 | -8/+8 |
* | Remove duplicated code. No functionality change. | Benjamin Kramer | 2010-03-10 | 1 | -9/+0 |
* | Roll back r97918 again. Just configuring against llvm-gcc wasn't enough to run | Jeffrey Yasskin | 2010-03-07 | 1 | -8/+8 |
* | Reapply r97788 to free MDNodes when the LLVMContext is destroyed. It | Jeffrey Yasskin | 2010-03-07 | 1 | -8/+8 |
* | Revert r97788 because it broke test/FrontendC/2010-02-16-DbgVarScope.c. | Jeffrey Yasskin | 2010-03-05 | 1 | -8/+8 |
* | Free MDNodes when the LLVMContext is destroyed. Leak found by Valgrind. | Jeffrey Yasskin | 2010-03-05 | 1 | -8/+8 |