CPA: Add new object for gathering critical path annotations.
[gem5.git] / src / base / CPA.py
1 from m5.SimObject import SimObject
2 from m5.params import *
3
4 class CPA(SimObject):
5 type = 'CPA'
6
7 enabled = Param.Bool(False, "Is Annotation enabled?")
8 user_apps = VectorParam.String([], "List of apps to get symbols for")