Category "disassembly"

Tool to compare control flow of disassembly and C

Is there a tool to compare the control flow of some disassembly and some C? Here's my situation: I started with the disassembly (x86_64) of a function. In some

How to check the CRC of the function in C++

Is it possible to count the CRC of code in the memory of the function in the runtime? I have a function that compares user's password with the secret password.

How to disassemble a binary executable in Linux to get the assembly code?

I was told to use a disassembler. Does gcc have anything built in? What is the easiest way to do this?