When comparing verge speed operations, just do
Autoexec() {
//the operation here
exit( str(systemtime) );
}
For each operation and then compare the values.
If the operation in question is less than a ms, slap each in a for-loop containing only that operation and loop it a few thousand times, then compare. The overhead for each should be the same, and therefore cancel out, and the difference should prove to be true (ie, although you won't know the absolute time of the operations, you will know the difference in speed between the slower one and the faster one.)
Although general programming assumptions like Big O and the such should prove true in vc, I'm not sure if the c assumptions hold up in vc. Test it and find out!