The simplest algorithm for grouping blocks into functions would be:
- note all addresses to which calls are made with
call some_address instructions
- if the first block after such an address ends with
ret, you're done with the function, else
- follow the jump in the block to another block and so on until you've followed all possible execution paths (remember about conditional jumps, each of which splits a path into two) and all the paths have finished with
ret. You'll need to recognize jumps that organize loops so your program itself does not hang by entering an infinite loop
Problems:
- a number of calls can be made indirectly by reading function pointers from memory, e.g. you'd have
call [some_address] instead of call some_address
- some indirect calls can be made to calculated addresses
- functions that call other functions before returning may have
jump some_address instead of call some_address immediately followed by ret
call some_address can be simulated with a combination of push some_address + ret OR push some_address + jmp some_other_address
- some functions may share code at their end (e.g. they have different entry points, but one or more exit points are the same)
You may use some heuristic to determine where functions start by looking for the most common prolog instruction sequence:
push ebp
mov ebp, esp
Again, this may not work if functions are compiled with the frame pointer suppressed (i.e. they'd use esp instead of ebp to access their parameters on the stack, it's possible).
The compiler (e.g. MSVC++) may also pad the inter-function space with the int 3 instruction and that too can serve as a hint for an upcoming function beginning.
As for differentiating between the various calling conventions, it's perhaps the easiest to look at the symbols (of course, if you have them). MSVC++ generates different name prefixes and suffixes, e.g.:
- _function - cdecl
- _function@number - stdcall
- @function@number - fastcall
If you cannot extract this information from the symbols, you must analyze code to see how parameters are passed to functions and whether functions or their callers remove them from the stack.