AArch64: Reenable CompleteModel for A53, A57 and Kryo models

The fixes in r262393 completed them as well.

llvm-svn: 262408
This commit is contained in:
Matthias Braun 2016-03-01 21:55:35 +00:00
parent 7071c5fd64
commit 37d884fdf4
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ def CortexA53Model : SchedMachineModel {
let MispredictPenalty = 9; // Based on "Cortex-A53 Software Optimisation
// Specification - Instruction Timings"
// v 1.0 Spreadsheet
let CompleteModel = 0;
let CompleteModel = 1;
}

View File

@ -30,7 +30,7 @@ def CortexA57Model : SchedMachineModel {
// Enable partial & runtime unrolling. The magic number is chosen based on
// experiments and benchmarking data.
let LoopMicroOpBufferSize = 16;
let CompleteModel = 0;
let CompleteModel = 1;
}
//===----------------------------------------------------------------------===//

View File

@ -26,7 +26,7 @@ def KryoModel : SchedMachineModel {
// Enable partial & runtime unrolling. The magic number is chosen based on
// experiments and benchmarking data.
let LoopMicroOpBufferSize = 16;
let CompleteModel = 0;
let CompleteModel = 1;
}
//===----------------------------------------------------------------------===//