[PATCH] D95775: [ValueMapper] Add debug output for metadata remapping
Ruiling, Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 10 17:55:38 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8b7d3bed0f73: [ValueMapper] Add debug output for metadata remapping (authored by ruiling).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95775/new/
https://reviews.llvm.org/D95775
Files:
llvm/lib/Transforms/Utils/ValueMapper.cpp
Index: llvm/lib/Transforms/Utils/ValueMapper.cpp
===================================================================
--- llvm/lib/Transforms/Utils/ValueMapper.cpp
+++ llvm/lib/Transforms/Utils/ValueMapper.cpp
@@ -26,8 +26,8 @@
#include "llvm/IR/DebugInfoMetadata.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
-#include "llvm/IR/GlobalObject.h"
#include "llvm/IR/GlobalIndirectSymbol.h"
+#include "llvm/IR/GlobalObject.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/InlineAsm.h"
#include "llvm/IR/Instruction.h"
@@ -37,6 +37,7 @@
#include "llvm/IR/Type.h"
#include "llvm/IR/Value.h"
#include "llvm/Support/Casting.h"
+#include "llvm/Support/Debug.h"
#include <cassert>
#include <limits>
#include <memory>
@@ -44,6 +45,8 @@
using namespace llvm;
+#define DEBUG_TYPE "value-mapper"
+
// Out of line method to get vtable etc for class.
void ValueMapTypeRemapper::anchor() {}
void ValueMaterializer::anchor() {}
@@ -570,10 +573,18 @@
MDNode *MDNodeMapper::mapDistinctNode(const MDNode &N) {
assert(N.isDistinct() && "Expected a distinct node");
assert(!M.getVM().getMappedMD(&N) && "Expected an unmapped node");
- DistinctWorklist.push_back(cast<MDNode>(
- (M.Flags & RF_ReuseAndMutateDistinctMDs)
- ? M.mapToSelf(&N)
- : M.mapToMetadata(&N, MDNode::replaceWithDistinct(N.clone()))));
+ Metadata *NewM = nullptr;
+
+ if (M.Flags & RF_ReuseAndMutateDistinctMDs) {
+ NewM = M.mapToSelf(&N);
+ } else {
+ NewM = MDNode::replaceWithDistinct(N.clone());
+ LLVM_DEBUG(dbgs() << "\nMap " << N << "\n"
+ << "To " << *NewM << "\n\n");
+ M.mapToMetadata(&N, NewM);
+ }
+ DistinctWorklist.push_back(cast<MDNode>(NewM));
+
return DistinctWorklist.back();
}
@@ -621,6 +632,9 @@
for (unsigned I = 0, E = N.getNumOperands(); I != E; ++I) {
Metadata *Old = N.getOperand(I);
Metadata *New = mapOperand(Old);
+ if (Old != New)
+ LLVM_DEBUG(dbgs() << "Replacing Op " << Old << " with " << New << " in "
+ << N << "\n");
if (Old != New)
N.replaceOperandWith(I, New);
@@ -740,6 +754,11 @@
});
auto *NewN = MDNode::replaceWithUniqued(std::move(ClonedN));
+ if (N && NewN && N != NewN) {
+ LLVM_DEBUG(dbgs() << "\nMap " << *N << "\n"
+ << "To " << *NewN << "\n\n");
+ }
+
M.mapToMetadata(N, NewN);
// Nodes that were referenced out of order in the POT are involved in a
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95775.329809.patch
Type: text/x-patch
Size: 2487 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210311/a5e47e1d/attachment.bin>
More information about the llvm-commits
mailing list