[llvm] r342245 - SelectionDAG: Add compact SDDbgValue representation to -dag-dump-verbose output
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 14 10:08:02 PDT 2018
Author: adrian
Date: Fri Sep 14 10:08:02 2018
New Revision: 342245
URL: http://llvm.org/viewvc/llvm-project?rev=342245&view=rev
Log:
SelectionDAG: Add compact SDDbgValue representation to -dag-dump-verbose output
Modified:
llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
llvm/trunk/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAG.h?rev=342245&r1=342244&r2=342245&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAG.h Fri Sep 14 10:08:02 2018
@@ -188,8 +188,8 @@ public:
return DbgValues.empty() && ByvalParmDbgValues.empty() && DbgLabels.empty();
}
- ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) {
- DbgValMapType::iterator I = DbgValMap.find(Node);
+ ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) const {
+ auto I = DbgValMap.find(Node);
if (I != DbgValMap.end())
return I->second;
return ArrayRef<SDDbgValue*>();
@@ -1351,7 +1351,7 @@ public:
void AddDbgLabel(SDDbgLabel *DB);
/// Get the debug values which reference the given SDNode.
- ArrayRef<SDDbgValue*> GetDbgValues(const SDNode* SD) {
+ ArrayRef<SDDbgValue*> GetDbgValues(const SDNode* SD) const {
return DbgInfo->getSDDbgValues(SD);
}
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h?rev=342245&r1=342244&r2=342245&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h Fri Sep 14 10:08:02 2018
@@ -24,6 +24,7 @@ class DIVariable;
class DIExpression;
class SDNode;
class Value;
+class raw_ostream;
/// Holds the information from a dbg_value node through SDISel.
/// We do not use SDValue here to avoid including its header.
@@ -124,6 +125,8 @@ public:
/// deleted.
void setIsInvalidated() { Invalid = true; }
bool isInvalidated() const { return Invalid; }
+
+ LLVM_DUMP_METHOD void dump(raw_ostream &OS) const;
};
/// Holds the information from a dbg_label node through SDISel.
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp?rev=342245&r1=342244&r2=342245&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp Fri Sep 14 10:08:02 2018
@@ -46,6 +46,7 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/Target/TargetIntrinsicInfo.h"
#include "llvm/Target/TargetMachine.h"
+#include "SDNodeDbgValue.h"
#include <cstdint>
#include <iterator>
@@ -681,9 +682,24 @@ void SDNode::print_details(raw_ostream &
OS << ':' << L->getLine();
if (unsigned C = L->getColumn())
OS << ':' << C;
+
+ for (SDDbgValue *Dbg : G->GetDbgValues(this)) {
+ if (Dbg->getKind() != SDDbgValue::SDNODE || Dbg->isInvalidated())
+ continue;
+ Dbg->dump(OS);
+ }
}
}
+LLVM_DUMP_METHOD void SDDbgValue::dump(raw_ostream &OS) const {
+ OS << " DbgVal";
+ if (kind==SDNODE)
+ OS << '(' << u.s.ResNo << ')';
+ OS << ":\"" << Var->getName() << '"';
+ if (Expr->getNumElements())
+ Expr->dump();
+}
+
/// Return true if this node is so simple that we should just print it inline
/// if it appears as an operand.
static bool shouldPrintInline(const SDNode &Node) {
More information about the llvm-commits
mailing list