Run time phase support in UVM-F

Does uvm-f support run-time phases (reset, configure, main, etc) and phase domains? If so, can you please point me to documentation or examples related to this?

In reply to superUVM:

The only time-consuming phase used by UVMF is the run_phase(). There is nothing preventing you from using other phases. Generally we recommend using virtual sequences as grouping mechanism instead of phases independent of whether you are using UVMF or not.

In reply to dave_59:

Hi Dave,
Thanks for your reply. How and where would I make change to able to use run-time phases on uvm-f generated code? Should I mix handwritten code which use run-time phases with uvmf generated code? Are you suggesting virtual sequences should be made dependent so as to create reset->configure->main phase effect?

Thanks