Identify which functions or libraries consume the most memory in a firmware binary before shipping a size-constrained embedded release.
Visualize a compiled program's full memory map as a proportional block diagram to spot bloat at a glance.
Map specific memory addresses back to source code lines during debugging or reverse engineering using embedded DWARF debug info.
Requires Visual Studio on Windows with the C++ desktop and MFC optional components installed.
MemMap Explorer is a Windows desktop application that shows how a compiled program is laid out in memory, using the same visual style as WinDirStat, a popular tool for visualizing hard disk usage. Instead of showing which files take up space on a drive, it shows which parts of a compiled program (functions, variables, libraries) take up space in memory, displayed as a proportional block diagram alongside a tree view. The tool imports two types of files that compilers and linkers produce: MAP files, which describe the memory addresses where each function and data block lives, and ELF files, the standard binary format used in embedded systems and Linux. Once imported, the data appears as a tree on the left and a treemap on the right, making it easy to see at a glance which parts of the code are largest. A right-hand details panel shows structured information about any selected item: its address, size, and the names of the sections or objects it belongs to. When debug information is available in a format called DWARF, the tool can also map specific memory addresses back to source code lines. The primary audience is embedded systems and firmware developers who need to understand where code and data live in a device with limited memory, as well as anyone doing binary size analysis or reverse engineering on compiled programs. Building the application requires Visual Studio with C++ desktop and MFC support on Windows. The project is a modified derivative of the open-source WinDirStat codebase and is distributed under the GPL-2.0 license.
← zepp-hanzj on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.