Combines Timer and TimeRegion to time a named region in one statement.
This class is basically a combination of TimeRegion and Timer. It allows you to declare a new timer, AND specify the region to time, all in one statement. All timers with the same name are merged. This is primarily used for debugging and for hunting performance problems.
| Name | Description |
|---|---|
TimeRegion | RAII helper that starts a timer on construction and stops it on destruction. |
| Name | Description |
|---|---|
NamedRegionTimer [constructor] | Create a named region timer in the named group. |
| Name | Description |
|---|---|
getNamedTimerGroup | Create or get a TimerGroup stored in the same global map owned by NamedRegionTimer. |