From: Christoph Egger Date: Tue, 27 May 2014 12:37:01 +0000 (+0200) Subject: Display entries for all functions X-Git-Tag: v0.1~197 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=9f05d22509de68655005ca6630972438bb0ef26c Display entries for all functions --- diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 91a933b..f91957b 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -62,6 +62,10 @@ void Mainwindow::open() { void Mainwindow::openBinary(const std::string& filename) { if (filename != "") { disassembler.reset(new LLVMDisassembler(filename)); + disassembler->forEachFunction([&](uint64_t address, Function* fun) { + populateSymbolInformation(fun->getName()); + }); + // curBin = new Binary(fileName.toStdString()); // std::vector symbols = curBin->getSymbols();