cpu: Fixed typos in parameter/stats descriptions
authorPau Cabre <pau.cabre@metempsy.com>
Sat, 1 Dec 2018 23:20:13 +0000 (00:20 +0100)
committerPau Cabre <pau.cabre@metempsy.com>
Tue, 11 Dec 2018 22:21:56 +0000 (22:21 +0000)
Change-Id: I7b3274a3e37128da35f497da150af08343e97ee6
Signed-off-by: Pau Cabre <pau.cabre@metempsy.com>
Reviewed-on: https://gem5-review.googlesource.com/c/14795
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Ilias Vougioukas <ilias.vougioukas@arm.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>

src/cpu/pred/BranchPredictor.py
src/cpu/pred/ltage.cc

index 0c1e9c2841a3678f6366649adcaf6015b61cbe3b..4d7323e49f493bf4b30fc100894a2d4ed7ac5411 100644 (file)
@@ -95,8 +95,8 @@ class TAGE(BranchPredictor):
     cxx_header = "cpu/pred/tage.hh"
 
     nHistoryTables = Param.Unsigned(7, "Number of history tables")
-    minHist = Param.Unsigned(5, "Minimum history size of LTAGE")
-    maxHist = Param.Unsigned(130, "Maximum history size of LTAGE")
+    minHist = Param.Unsigned(5, "Minimum history size of TAGE")
+    maxHist = Param.Unsigned(130, "Maximum history size of TAGE")
 
     tagTableTagWidths = VectorParam.Unsigned(
         [0, 9, 9, 10, 10, 11, 11, 12], "Tag size in TAGE tag tables")
index 8f332b3b56db59d75aea09565b863a3b5029c723..56e1555cf8d5235b965ec85b02fee2b8b1b3ce45 100644 (file)
@@ -365,7 +365,7 @@ LTAGE::regStats()
 
     loopPredictorWrong
         .name(name() + ".loopPredictorWrong")
-        .desc("Number of times the loop predictor is the provier and "
+        .desc("Number of times the loop predictor is the provider and "
               "the prediction is wrong");
 }