forked from OSchip/llvm-project
dot graph viewing is apparently not using SDNode::print_details, this is bad,
but in the meantime lets print targetflags on node labels. llvm-svn: 74274
This commit is contained in:
parent
17dcba9da4
commit
68bb4e0e01
|
@ -138,10 +138,15 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
|
||||||
else
|
else
|
||||||
Op += itostr(Offset);
|
Op += itostr(Offset);
|
||||||
}
|
}
|
||||||
|
if (unsigned char TF = GADN->getTargetFlags())
|
||||||
|
Op += " [TF=" + utostr(TF) + "]";
|
||||||
|
|
||||||
} else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Node)) {
|
} else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Node)) {
|
||||||
Op += " " + itostr(FIDN->getIndex());
|
Op += " " + itostr(FIDN->getIndex());
|
||||||
} else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(Node)) {
|
} else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(Node)) {
|
||||||
Op += " " + itostr(JTDN->getIndex());
|
Op += " " + itostr(JTDN->getIndex());
|
||||||
|
if (unsigned char TF = JTDN->getTargetFlags())
|
||||||
|
Op += " [TF=" + utostr(TF) + "]";
|
||||||
} else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Node)){
|
} else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Node)){
|
||||||
if (CP->isMachineConstantPoolEntry()) {
|
if (CP->isMachineConstantPoolEntry()) {
|
||||||
Op += '<';
|
Op += '<';
|
||||||
|
@ -165,6 +170,8 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Op += " A=" + itostr(CP->getAlignment());
|
Op += " A=" + itostr(CP->getAlignment());
|
||||||
|
if (unsigned char TF = CP->getTargetFlags())
|
||||||
|
Op += " TF=" + utostr(TF);
|
||||||
} else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(Node)) {
|
} else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(Node)) {
|
||||||
Op = "BB: ";
|
Op = "BB: ";
|
||||||
const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
|
const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
|
||||||
|
|
Loading…
Reference in New Issue