1230 {
1233
1235 {
1237 if (SVFUtil::isa<AddrStmt>(
edge))
1238 {
1240 }
1241 else if (SVFUtil::isa<CopyStmt>(
edge))
1242 {
1244 }
1245 else if (SVFUtil::isa<RetPE>(
edge))
1246 {
1247 rawstr <<
"color=black,style=dotted";
1248 }
1249 else if (SVFUtil::isa<GepStmt>(
edge))
1250 {
1251 rawstr <<
"color=purple";
1252 }
1253 else if (SVFUtil::isa<StoreStmt>(
edge))
1254 {
1256 }
1257 else if (SVFUtil::isa<LoadStmt>(
edge))
1258 {
1260 }
1261 else
1262 {
1263 assert(0 &&
"No such kind edge!!");
1264 }
1266 }
1267 else if (SVFUtil::isa<CmpVFGNode>(node))
1268 {
1270 }
1271 else if (SVFUtil::isa<BinaryOPVFGNode>(node))
1272 {
1274 }
1275 else if (SVFUtil::isa<UnaryOPVFGNode>(node))
1276 {
1278 }
1279 else if(SVFUtil::isa<PHIVFGNode>(node))
1280 {
1282 }
1283 else if(SVFUtil::isa<NullPtrVFGNode>(node))
1284 {
1286 }
1287 else if(SVFUtil::isa<FormalParmVFGNode>(node))
1288 {
1289 rawstr <<
"color=yellow,penwidth=2";
1290 }
1291 else if(SVFUtil::isa<ActualParmVFGNode>(node))
1292 {
1293 rawstr <<
"color=yellow,penwidth=2";
1294 }
1295 else if (SVFUtil::isa<ActualRetVFGNode>(node))
1296 {
1297 rawstr <<
"color=yellow,penwidth=2";
1298 }
1299 else if (SVFUtil::isa<FormalRetVFGNode>(node))
1300 {
1301 rawstr <<
"color=yellow,penwidth=2";
1302 }
1303 else if (SVFUtil::isa<MRSVFGNode>(node))
1304 {
1305 rawstr <<
"color=orange,penwidth=2";
1306 }
1307 else if (SVFUtil::isa<BranchVFGNode>(node))
1308 {
1309 rawstr <<
"color=gold,penwidth=2";
1310 }
1311 else
1312 assert(
false &&
"no such kind of node!!");
1313
1315
1317 }