I am working with a big C++ project on VMware (Ubuntu). It has several processes and a lot of cpp files.
What I want to find out is this: While running my code, how many operations (Additions, multiplications, read, write, shift, etc...) are being performed in each of the cpp files.
I have searched a lot for this and I know that I should be looking for a profiler that gives me the number of instructions in the running code, but I didn't find any profiler yet.
I am a beginner in programming, so I will appreciate any help.