arm: make the bi-mode predictor the default for O3_ARM_v7a_BP

the branch predictor used in the Cortex-A15 is a bi-mode style predictor,
see:

http://arm.com/files/pdf/at-exploring_the_design_of_the_cortex-a15.pdf
and
http://nvidia.com/docs/IO/116757/NVIDIA_Quad_a15_whitepaper_FINALv2.pdf

this patch makes the bi-mode predictor the default for the ARM O3 CPU.
This commit is contained in:
Anthony Gutierrez 2014-06-30 13:50:01 -04:00
parent 5b08e211ab
commit db267da822

View file

@ -87,12 +87,9 @@ class O3_ARM_v7a_FUP(FUPool):
FUList = [O3_ARM_v7a_Simple_Int(), O3_ARM_v7a_Complex_Int(),
O3_ARM_v7a_Load(), O3_ARM_v7a_Store(), O3_ARM_v7a_FP()]
# Tournament Branch Predictor
# Bi-Mode Branch Predictor
class O3_ARM_v7a_BP(BranchPredictor):
predType = "tournament"
localPredictorSize = 2048
localCtrBits = 2
localHistoryTableSize = 1024
predType = "bi-mode"
globalPredictorSize = 8192
globalCtrBits = 2
choicePredictorSize = 8192