I'm looking for a tool that checks whether two (C) source code files generate the same binary so that I can find actual functional changes between two files and ignore mere coding style changes. It would be great if this worked even within a file for different changesets, so a file may have changed in coding style on some places, but also had one functional patch added.
|
|
It's very very hard to write a program to figure out the "functional" result of another program. Such a program sounds like it would be necessary for this. I would guess that computer programs themselves are right about the most compact and machine-readable way we have to even describe functionality, so it's kind of hard to write a program that analyses a program and generates a "better" description. Somehow abstracting out and "understanding" that coding style differences don't affect functionality also sounds very, very hard. I find it hard when manually reading other people's code somehow, because the differences in style can be pretty large, even though the end result might be the same in "my style". I would be surprised if a solution wouldn't also require a solution to the halting problem, which is proven impossible for the general case. |
|||
|
|
The only way is to compile both with the same compiler options and do a binary diff. It's not only style changes you'd have to look out for; someone may have extracted code to a function that gets inlined in an optimised build. This may, or may not, depending on compiler options and version, give the same binary. |
|||||
|
|
|||||
|
|
If all you're interested in is whether they both "generate the same binary", then the easiest solution is simply to generate both binaries, and compare. Note, however, that there are things that would result in binaries that are bitwise different, even though they're functionally identical:
|
|||||||||
|
|
There is a branch of computer science that deals with concurrency and parallel processes. One of the applications is deciding whether two systems are behaviorally equivalent (in some bisimulation relation (weak or strong)). Though it's computationally very difficult to decide whether two large systems are behaviorally equivalent. The usage is mainly for verification of small critical applications where we can't afford failure. |
|||
|
|