I need to count the number of instructions that will be generated for an simple assembly language code . So that even if there is any loop I can count the number of instructions in that loop also.I just need it so that i can determine how many times i can use -p option for each instruction's in he code. I am using masm on widows xp computer .
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
This is actually much more difficult than you would think. (Some would say impossible--see http://en.wikipedia.org/wiki/Halting_problem) If the code relies on any sort of data (e.g. loading values from RAM), its behavior could change drastically based on what the data contains, and this will affect the number of instructions executed. e.g. if it's a loop, it will probably load its iteration count from memory somewhere. So it could be 100 instructions executed, or 100000000 instructions. |
|||
|
|
-poption do? – Alexey Frunze Jan 22 '12 at 6:54