in reply to OT How fast a cpu to overwhelm Time::HiRes

What happens when you move the print statements out from the time snapshots:
($secs_since_epoch_one, $microseconds_one) = gettimeofday(); ($secs_since_epoch_two, $microseconds_two) = gettimeofday(); print "......
Is the results closer to what you are looking for? could try to call the gettimeofday() from within the print statement and skip over most of the memory access.