I am profiling a PHP application (built upon the Zend framework). Attached you can find a screenshot of the main call graph that KCacheGrind produces from xDebug output.
There are two things that I don't understand:
1) Why does {main}
"fork" into 2 calls? Are they supposed to be parallel somehow or does one happen after the other?
2) The arrow to the left of {main}
has a little blue bar with the text 2x
; does this mean that the call to Zend_Application->bootstrap
happened twice?