]> git.siccegge.de Git - frida/frida.git/blobdiff - src/gui/Mainwindow.cxx
place BasicBlockWidgets on the canvas
[frida/frida.git] / src / gui / Mainwindow.cxx
index fb713fc57d3b4ca55c8ef9ab4dc286abfe3035a9..5e47b25871227bc791e9354021f49d2e5d0a7466 100644 (file)
@@ -65,21 +65,39 @@ void Mainwindow::openBinary(const std::string& filename) {
                disassembler->forEachFunction([&](uint64_t address, Function* fun) {
                                populateSymbolInformation(fun);
                        });
-
-        // curBin = new Binary(fileName.toStdString());
-
-        // std::vector<std::string> symbols = curBin->getSymbols();
-        // if (0 == symbols.size())
-        //     populateSymbolInformation(".text");
-        // for (auto it = symbols.begin(); it != symbols.end(); ++it) {
-        //     populateSymbolInformation(*it);
-        // }
     }
 }
 
+namespace {
+       void local__add_basic_block(BasicBlock * block, Disassembler * dis, QGraphicsScene * scene,
+                                                               uint64_t starty, uint64_t startx) {
+               std::stringstream s;
+               s << "BLOCK_" << std::hex << block->getStartAddress();
+               BasicBlockWidget * widget = new BasicBlockWidget(s.str().c_str());
+               scene->addItem(widget);
+               widget->setFlag(QGraphicsItem::ItemIsMovable, true);
+               widget->moveBy(100*startx, 10*(block->getStartAddress() - starty));
+
+               if (block->getNextBlock(0) != 0)
+                       local__add_basic_block(dis->getBasicBlock(block->getNextBlock(0)), dis, scene, starty, startx+1);
+               if (block->getNextBlock(1) != 0)
+                       local__add_basic_block(dis->getBasicBlock(block->getNextBlock(1)), dis, scene, starty, startx-1);
+       }
+}
+
 void Mainwindow::populateSymbolInformation(Function* fun) {
     QTabWidget * w = new QTabWidget();
 
+    // CFG
+    QGraphicsScene * scene = new QGraphicsScene;
+
+       BasicBlock * block = disassembler->getBasicBlock(fun->getStartAddress());
+
+       local__add_basic_block(block, disassembler.get(), scene, block->getStartAddress(), 100);
+
+    QGraphicsView * view = new QGraphicsView(scene);
+    w->addTab(view, "CFG");
+
     // Listing
     QTableWidget * t = new QTableWidget();
     t->setColumnCount(3);
@@ -98,32 +116,6 @@ void Mainwindow::populateSymbolInformation(Function* fun) {
     //     });
     w->addTab(t, "Listing");
 
-    // CFG
-    QGraphicsScene * scene = new QGraphicsScene;
-
-    BasicBlockWidget * s1 = new BasicBlockWidget;
-    scene->addItem(s1);
-    s1->setFlag(QGraphicsItem::ItemIsMovable, true);
-
-    BasicBlockWidget * s2 = new BasicBlockWidget;
-    scene->addItem(s2);
-    s2->setFlag(QGraphicsItem::ItemIsMovable, true);
-    s2->moveBy(-200, 350);
-
-    BasicBlockWidget * s3 = new BasicBlockWidget;
-    scene->addItem(s3);
-    s3->setFlag(QGraphicsItem::ItemIsMovable, true);
-    s3->moveBy(100, 350);
-
-    BasicBlockWidget * s4 = new BasicBlockWidget;
-    scene->addItem(s4);
-    s4->setFlag(QGraphicsItem::ItemIsMovable, true);
-    s4->moveBy(400, 350);
-
-
-    QGraphicsView * view = new QGraphicsView(scene);
-    w->addTab(view, "CFG");
-
     listWidget->addItem(fun->getName().c_str());
     stackedWidget->addWidget(w);
 }