I know there are lots of web sites that describe in what order events are called during the Asp.Net page life-cycle. But is there also a tool, perhaps Reflector, that would enable me to figure out by myself in what order are ALL the page’s events and their event handlers called during the page’s life cycle?
Yes - I think you should use Reflector (or the FX Source, or another decompiler - Telerik's JustDecompile isn't too bad) and read through the Page source (at least the ProcessRequest method). I did it 4 or 5 years ago, took notes on the major portions, and still refer to it today.
While it's helpful to have graphs, UML diagrams, and other people's words - nothing quite sums it up like your own pseudo-code. It's a pretty easy read, and should take < 30 mins to do - you could be halfway through it by the time you read the answers to this question.
Would you say that trying to figure out exactly what is going on under the hood is a good idea or a waste of time?
Well, there is obviously a limit (in software, there's always another hood to peek under). The full code of Page and Control are likely to be a bit daunting - and subject to change - but reading the source is certainly a good way to grokking the overall concept. It's not necessary to understand every single line.
Some people get all they need from documentation, others prefer unambiguous code. Considering how critically important the lifecycle events are to being a good WebForms developer, I'd certainly recommend doing whatever is necessary until you're comfortable with them.
To clarify – I’d like to figure out exactly what is going on when a control tree is build – thus all the method calls, all the events called etc needed for control tree to be build ( I imagine there are hundreds or perhaps thousands lines of code written just for building a control tree).
Stop imagining, and just look*. It's not hard, the high level isn't terribly complicated, and I think 30 mins will tell you a good bit - at that point, you can decide (or not) to continue the exploration. I'd certainly rather skim the source than go through all the docs on MSDN to get an in-depth understanding (though both are certainly valuable - just in different ways).
*AFAIK, there's no particularly compelling legal argument about viewing either the released source or a decompiled version - but IANAL, your rights may vary, advice void where prohibited, etc.