-
It seems like when initially loading a binary, Ghidra goes through and decompiles all the functions. I'm only often interested in a single function, so this seems wasteful. Is there a way to have Ghidra only disassemble but not decompile all functions, and then later manually trigger decompilation for the functions that I care about? Edit: The best option I can see so far is to set Edit: Setting to INT_MIN works better, because INT_MIN << 1 gives 0 (code multiplies by 1000 to convert to ms) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Simply turn off the decompiler parameter id, calling convention and switch analyzers. Basically all the analyzers that use the decompiler. I'm assuming you meant decompiling functions during analysis and not when loading. Ghidra doesn't decompile or disassemble anything when loading and only processes the executable format. |
Beta Was this translation helpful? Give feedback.
Simply turn off the decompiler parameter id, calling convention and switch analyzers. Basically all the analyzers that use the decompiler.
I'm assuming you meant decompiling functions during analysis and not when loading. Ghidra doesn't decompile or disassemble anything when loading and only processes the executable format.