shithub: libvpx

Download patch

ref: e023e0d93b4040987b5a6a6949c4d90bb5874860
parent: a6a00fc6a39466deeac427a4d581ad910bf110e1
parent: 2a233dd31d9d0694f74288edd007a01181a8e1f4
author: James Zern <jzern@google.com>
date: Fri Sep 20 16:03:30 EDT 2013

Merge "thumb: Extend the regexp for handling negative register indexing"

--- a/build/make/thumb.pm
+++ b/build/make/thumb.pm
@@ -47,7 +47,7 @@
     # this is used, it's used for two subsequent load instructions,
     # where a hand-written version of it could merge two subsequent
     # add and sub instructions.
-    s/^(\s*)((ldr|str)(ne)?)(\s+)(r\d+),\s*\[(\w+), -([^\]]+)\]/$1sub$4$5$7, $7, $8\n$1$2$5$6, [$7]\n$1add$4$5$7, $7, $8/g;
+    s/^(\s*)((ldr|str|pld)(ne)?)(\s+)(r\d+,)?\s*\[(\w+), -([^\]]+)\]/$1sub$4$5$7, $7, $8\n$1$2$5$6\[$7\]\n$1add$4$5$7, $7, $8/g;
 
     # Convert register post indexing to a separate add instruction.
     # This converts "ldrneb r9, [r0], r2" into "ldrneb r9, [r0]",