[llvm] r235772 - AsmWriter: Split out code for printing Metadata attachments, NFC
Duncan P. N. Exon Smith
dexonsmith at apple.com
Fri Apr 24 13:59:53 PDT 2015
Author: dexonsmith
Date: Fri Apr 24 15:59:52 2015
New Revision: 235772
URL: http://llvm.org/viewvc/llvm-project?rev=235772&view=rev
Log:
AsmWriter: Split out code for printing Metadata attachments, NFC
Refactor the code for printing `Instruction` metadata attachments so it
can be reused for `Function`.
Modified:
llvm/trunk/lib/IR/AsmWriter.cpp
Modified: llvm/trunk/lib/IR/AsmWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/AsmWriter.cpp?rev=235772&r1=235771&r2=235772&view=diff
==============================================================================
--- llvm/trunk/lib/IR/AsmWriter.cpp (original)
+++ llvm/trunk/lib/IR/AsmWriter.cpp Fri Apr 24 15:59:52 2015
@@ -1987,6 +1987,10 @@ public:
private:
void init();
+ /// \brief Print out metadata attachments.
+ void printMetadataAttachments(
+ const SmallVectorImpl<std::pair<unsigned, MDNode *>> &MDs);
+
// printInfoComment - Print a little comment after the instruction indicating
// which slot it occupies.
void printInfoComment(const Value &V);
@@ -2952,22 +2956,29 @@ void AssemblyWriter::printInstruction(co
// Print Metadata info.
SmallVector<std::pair<unsigned, MDNode *>, 4> InstMD;
I.getAllMetadata(InstMD);
- if (!InstMD.empty()) {
- SmallVector<StringRef, 8> MDNames;
- I.getType()->getContext().getMDKindNames(MDNames);
- for (unsigned i = 0, e = InstMD.size(); i != e; ++i) {
- unsigned Kind = InstMD[i].first;
- if (Kind < MDNames.size()) {
- Out << ", !" << MDNames[Kind];
- } else {
- Out << ", !<unknown kind #" << Kind << ">";
- }
- Out << ' ';
- WriteAsOperandInternal(Out, InstMD[i].second, &TypePrinter, &Machine,
- TheModule);
+ printMetadataAttachments(InstMD);
+
+ // Print a nice comment.
+ printInfoComment(I);
+}
+
+void AssemblyWriter::printMetadataAttachments(
+ const SmallVectorImpl<std::pair<unsigned, MDNode *>> &MDs) {
+ if (MDs.empty())
+ return;
+
+ SmallVector<StringRef, 8> MDNames;
+ TheModule->getMDKindNames(MDNames);
+ for (const auto &I : MDs) {
+ unsigned Kind = I.first;
+ if (Kind < MDNames.size()) {
+ Out << ", !" << MDNames[Kind];
+ } else {
+ Out << ", !<unknown kind #" << Kind << ">";
}
+ Out << ' ';
+ WriteAsOperandInternal(Out, I.second, &TypePrinter, &Machine, TheModule);
}
- printInfoComment(I);
}
void AssemblyWriter::writeMDNode(unsigned Slot, const MDNode *Node) {
More information about the llvm-commits
mailing list