dot graph viewing is apparently not using SDNode::print_details, this is bad,

but in the meantime lets print targetflags on node labels.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74274 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-06-26 05:55:43 +00:00
parent 6ec66dba12
commit 7bea038b3e

View File

@ -138,10 +138,15 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
else
Op += itostr(Offset);
}
if (unsigned char TF = GADN->getTargetFlags())
Op += " [TF=" + utostr(TF) + "]";
} else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Node)) {
Op += " " + itostr(FIDN->getIndex());
} else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(Node)) {
Op += " " + itostr(JTDN->getIndex());
if (unsigned char TF = JTDN->getTargetFlags())
Op += " [TF=" + utostr(TF) + "]";
} else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Node)){
if (CP->isMachineConstantPoolEntry()) {
Op += '<';
@ -165,6 +170,8 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
}
}
Op += " A=" + itostr(CP->getAlignment());
if (unsigned char TF = CP->getTargetFlags())
Op += " TF=" + utostr(TF);
} else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(Node)) {
Op = "BB: ";
const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();