[llvm] r189998 - Expand and rewrite comment.
Eric Christopher
echristo at gmail.com
Wed Sep 4 14:23:23 PDT 2013
Author: echristo
Date: Wed Sep 4 16:23:23 2013
New Revision: 189998
URL: http://llvm.org/viewvc/llvm-project?rev=189998&view=rev
Log:
Expand and rewrite comment.
Modified:
llvm/trunk/test/CodeGen/ARM/swift-vldm.ll
Modified: llvm/trunk/test/CodeGen/ARM/swift-vldm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/swift-vldm.ll?rev=189998&r1=189997&r2=189998&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/swift-vldm.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/swift-vldm.ll Wed Sep 4 16:23:23 2013
@@ -1,7 +1,8 @@
; RUN: llc < %s -mcpu=swift -mtriple=armv7s-apple-ios | FileCheck %s
-; vldm with registers not aligned with q registers need more micro-ops so that
-; so that there usage becomes unbeneficial on swift.
+; Check that we avoid producing vldm instructions using d registers that
+; begin in the most-significant half of a q register. These require more
+; micro-ops on swift and so aren't worth combining.
; CHECK-LABEL: test_vldm
; CHECK: vldmia r{{[0-9]+}}, {d2, d3, d4}
@@ -19,7 +20,7 @@ entry:
%d2 = load double * %addr1
%d3 = load double * %addr2
%d4 = load double * %addr3
- ; We are trying to force x[0-3] in register d1 to d4 so that we can test we
+ ; We are trying to force x[0-3] in registers d1 to d4 so that we can test we
; don't form a "vldmia rX, {d1, d2, d3, d4}".
; We are relying on the calling convention and that register allocation
; properly coalesces registers.
More information about the llvm-commits
mailing list