diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-12 20:09:34 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-12 20:09:34 +0000 |
commit | 118632dbf6851afc878098903a5baf7c8851d3c2 (patch) | |
tree | 2ac4f36d54bae0ee66fd8be3a0978b37840dfc8c /llvm/lib/Bitcode/Reader | |
parent | 30045e6148d7ad1a209160f1880a9d5a4d5ba26a (diff) | |
download | bcm5719-llvm-118632dbf6851afc878098903a5baf7c8851d3c2.tar.gz bcm5719-llvm-118632dbf6851afc878098903a5baf7c8851d3c2.zip |
IR: Split GenericMDNode into MDTuple and UniquableMDNode
Split `GenericMDNode` into two classes (with more descriptive names).
- `UniquableMDNode` will be a common subclass for `MDNode`s that are
sometimes uniqued like constants, and sometimes 'distinct'.
This class gets the (short-lived) RAUW support and related API.
- `MDTuple` is the basic tuple that has always been returned by
`MDNode::get()`. This is as opposed to more specific nodes to be
added soon, which have additional fields, custom assembly syntax,
and extra semantics.
This class gets the hash-related logic, since other sublcasses of
`UniquableMDNode` may need to hash based on other fields.
To keep this diff from getting too big, I've added casts to `MDTuple`
that won't really scale as new subclasses of `UniquableMDNode` are
added, but I'll clean those up incrementally.
(No functionality change intended.)
llvm-svn: 225682
Diffstat (limited to 'llvm/lib/Bitcode/Reader')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 75d311c0386..6f58f2241a6 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -558,8 +558,8 @@ void BitcodeReaderMDValueList::tryToResolveCycles() { // Resolve any cycles. for (auto &MD : MDValuePtrs) { assert(!(MD && isa<MDNodeFwdDecl>(MD)) && "Unexpected forward reference"); - if (auto *G = dyn_cast_or_null<GenericMDNode>(MD)) - G->resolveCycles(); + if (auto *N = dyn_cast_or_null<UniquableMDNode>(MD)) + N->resolveCycles(); } } |