diff options
author | Iru Cai <mytbk920423@gmail.com> | 2019-04-17 10:54:51 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2019-05-31 16:03:29 +0800 |
commit | 50cdd2ccbe4e00f6768fc302ba3ef70fc4cb9170 (patch) | |
tree | f37742915e6fc53d07b74c65c5d454def21ae0a7 /src/cpu/o3/O3CPU.py | |
parent | 3d837e922175e0d9cfdea8c94a75f9e7178576d6 (diff) | |
download | gem5-50cdd2ccbe4e00f6768fc302ba3ef70fc4cb9170.tar.xz |
add a trackBranch option
Diffstat (limited to 'src/cpu/o3/O3CPU.py')
-rw-r--r-- | src/cpu/o3/O3CPU.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/o3/O3CPU.py b/src/cpu/o3/O3CPU.py index 1a97faced..11a2133e6 100644 --- a/src/cpu/o3/O3CPU.py +++ b/src/cpu/o3/O3CPU.py @@ -170,6 +170,7 @@ class DerivO3CPU(BaseCPU): needsTSO = Param.Bool(False, "Enable TSO Memory model") allowSpecBuffHit = Param.Bool(True, "Enable hit/reuse spec buffer entries") useIFT = Param.Bool(False, "use IFT to filter") + trackBranch = Param.Bool(True, "Track tainted branches") def addCheckerCpu(self): if buildEnv['TARGET_ISA'] in ['arm']: |