summaryrefslogtreecommitdiff
path: root/compiler/optimizing/scheduler_arm.cc
diff options
context:
space:
mode:
author Artem Serov <artem.serov@linaro.org> 2017-05-03 15:07:15 +0100
committer Artem Serov <artem.serov@linaro.org> 2017-06-06 14:09:02 +0100
commitf0fc4c6c9cedbd8665a2f98c4a649a62aaf3ac19 (patch)
treebd309a5d709f30e435fa98349954ee80330ea9f9 /compiler/optimizing/scheduler_arm.cc
parentcce39b5b4fc00ab9e6b4aaed1e7fa6928f0ec594 (diff)
ARM64: SIMD instruction scheduling.
Enables scheduling for SIMD loops; the patch gives 4.1% perf gain on Linpack benchmark. Test: test-art-target, test-art-host. Change-Id: I5e728b5218fc6640ac583594ba08f69330b01e21
Diffstat (limited to 'compiler/optimizing/scheduler_arm.cc')
-rw-r--r--compiler/optimizing/scheduler_arm.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/scheduler_arm.cc b/compiler/optimizing/scheduler_arm.cc
index 1a89567991..832a7e1571 100644
--- a/compiler/optimizing/scheduler_arm.cc
+++ b/compiler/optimizing/scheduler_arm.cc
@@ -288,6 +288,11 @@ void SchedulingLatencyVisitorARM::VisitIntermediateAddress(HIntermediateAddress*
last_visited_latency_ = kArmIntegerOpLatency;
}
+void SchedulingLatencyVisitorARM::VisitIntermediateAddressIndex(
+ HIntermediateAddressIndex* ATTRIBUTE_UNUSED) {
+ UNIMPLEMENTED(FATAL) << "IntermediateAddressIndex is not implemented for ARM";
+}
+
void SchedulingLatencyVisitorARM::VisitMultiplyAccumulate(HMultiplyAccumulate* ATTRIBUTE_UNUSED) {
last_visited_latency_ = kArmMulIntegerLatency;
}