Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
profiling
03-28-2010, 07:28 PM,
#9
 
The profiling counters are inconspicuous. GetCollapsedDrawList has a CPI of two. It is the amount of retired instructions that bothers me. It looks like it is doing a lot of work!?
Code:
CS:EIP       Symbol + Offset                                     64-bit         CPU clocks     Ret inst     
0x18b6e0     SCENENODE::GetCollapsedDrawList                                10000          5542         
0x122080     GRAPHICS_SDLGL::RENDER_INPUT_SCENE::FrustumCull                3016           1799         

2 functions, 215 instructions, Total: 20357 samples, 51.96% of samples in the module, 13.95% of total session samples

The bad code segment:
Code:
    CPU clocks     Ret inst     
for (map <DRAWABLE_FILTER *, vector <SCENEDRAW> >::iterator mi = drawlist_output_map.begin(); mi != drawlist_output_map.end(); ++mi) 241            168          
{                                                                                                                                    0              0            
    for (list <DRAWABLE>::const_iterator i = drawlist.begin(); i != drawlist.end(); ++i)                                             2343           846          
    {                                                                                                                                0              0            
        if (mi->first->Matches(*i))                                                                                                  4608           3814         
        {                                                                                                                            0              0            
            if (i->GetDrawEnable())                                                                                                  1622           433          
            {                                                                                                                        0              0            
                mi->second.push_back(SCENEDRAW(*i,this_transform));                                                                  30             8            
            }                                                                                                                        0              0            
        }                                                                                                                            0              0            
    }                                                                                                                                0              0            
}                                                                                                                                    0              0
The Matches() function:
Code:
bool DRAWABLE_FILTER::Matches(const DRAWABLE & drawable) const
{
    return (drawable.filterspeedup.filtervalue & filtermask) == (filtervalue & filtermask);
}
I added a counter to see how often the sort in GetCollapsedDrawList is executed. It is run if drawlist or childlist of the scenenode are not empty:
245 times/frame in GUI
251 times/frame in car selection
253 times/frame in game

Edit:
It won't solve the problem with the sort loop, but maybe it's worth to move GUI into an own scenenode like the track. I don't understand why it is faster on linux. Will install a distro asap.

Edit2:
After rearranging the loop body:
Code:
CPU clocks     Ret inst
for (map <DRAWABLE_FILTER *, vector <SCENEDRAW> >::iterator mi = drawlist_output_map.begin(); mi != drawlist_output_map.end(); ++mi) 252            240
{                                                                                                                                    0              0
    for (list <DRAWABLE>::const_iterator i = drawlist.begin(); i != drawlist.end(); ++i)                                             2879           2586
    {                                                                                                                                0              0
        if (i->GetDrawEnable())                                                                                                      5389           1661
        {                                                                                                                            0              0
            if (mi->first->Matches(*i))                                                                                              68             75
            {                                                                                                                        0              0
                mi->second.push_back(SCENEDRAW(*i, this_transform));                                                                 25             15
            }                                                                                                                        0              0
        }                                                                                                                            0              0
    }                                                                                                                                0              0
}
It looks like there is a serious penalty accessing the drawlist elemets.
Reply


Messages In This Thread
profiling - by NaN - 03-25-2010, 08:47 PM
[No subject] - by NaN - 03-25-2010, 08:50 PM
[No subject] - by joevenzon_phpbb2_import3 - 03-25-2010, 10:20 PM
[No subject] - by joevenzon_phpbb2_import3 - 03-25-2010, 10:37 PM
[No subject] - by joevenzon_phpbb2_import3 - 03-25-2010, 10:47 PM
[No subject] - by NaN - 03-26-2010, 03:33 AM
[No subject] - by NaN - 03-28-2010, 06:18 AM
[No subject] - by joevenzon_phpbb2_import3 - 03-28-2010, 11:48 AM
[No subject] - by NaN - 03-28-2010, 07:28 PM
[No subject] - by joevenzon_phpbb2_import3 - 03-30-2010, 10:22 AM
[No subject] - by NaN - 05-19-2010, 06:57 AM
[No subject] - by joevenzon_phpbb2_import3 - 05-20-2010, 06:42 PM
[No subject] - by NaN - 05-21-2010, 03:49 AM
[No subject] - by joevenzon_phpbb2_import3 - 05-21-2010, 12:09 PM
[No subject] - by NaN - 07-19-2010, 04:25 AM
[No subject] - by joevenzon_phpbb2_import3 - 07-19-2010, 10:36 AM
[No subject] - by NaN - 12-23-2010, 09:32 AM
[No subject] - by joevenzon_phpbb2_import3 - 12-23-2010, 09:08 PM
[No subject] - by thelusiv - 12-24-2010, 10:42 AM
[No subject] - by joevenzon_phpbb2_import3 - 12-24-2010, 01:27 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)