diff options
author | Jairo Balart <jairo.balart@metempsy.com> | 2019-01-05 10:24:17 +0100 |
---|---|---|
committer | Pau Cabre <pau.cabre@metempsy.com> | 2019-02-05 10:11:43 +0000 |
commit | 4ba89236f00e1d18e7785da57941f25abfed6033 (patch) | |
tree | 3389ecb484eb62ac8fdf81151d6c52e1086849f4 /src/cpu/pred/SConscript | |
parent | f0e2caf84fbbf225e46cbda61e45fc5727d4d885 (diff) | |
download | gem5-4ba89236f00e1d18e7785da57941f25abfed6033.tar.xz |
cpu: Made TAGE a SimObject that can be used by other predictors
The TAGE implementation is now a SimObject so that other branch predictors
can easily use it. It has also been updated with the latest available TAGE
implementation from Andre Seznec:
http://www.irisa.fr/alf/downloads/seznec/TAGE-GSC-IMLI.tar
Change-Id: I2251b8b2d7f94124f9955f52b917dc3b064f090e
Reviewed-on: https://gem5-review.googlesource.com/c/15317
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/pred/SConscript')
-rw-r--r-- | src/cpu/pred/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/pred/SConscript b/src/cpu/pred/SConscript index b0e63096a..96451f253 100644 --- a/src/cpu/pred/SConscript +++ b/src/cpu/pred/SConscript @@ -43,6 +43,7 @@ Source('indirect.cc') Source('ras.cc') Source('tournament.cc') Source ('bi_mode.cc') +Source('tage_base.cc') Source('tage.cc') Source('ltage.cc') DebugFlag('FreeList') |