Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Unified Diff: src/opts/SkBitmapProcState_filter_neon.h

Issue 18996003: ARM Skia NEON patches - 02 - Tune filter clobber list (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/opts/SkBitmapProcState_filter_neon.h
diff --git a/src/opts/SkBitmapProcState_filter_neon.h b/src/opts/SkBitmapProcState_filter_neon.h
index 699f856d16b73b249cd598e602a1f1e8f688ef8a..2005c353c30d11256b866d3c47954f8cea49f21a 100644
--- a/src/opts/SkBitmapProcState_filter_neon.h
+++ b/src/opts/SkBitmapProcState_filter_neon.h
@@ -47,7 +47,7 @@ static inline void Filter_32_opaque_neon(unsigned x, unsigned y,
"vst1.32 {d0[0]}, [%[dst]] \n\t" // store result
:
: [x] "r" (x), [y] "r" (y), [a00] "r" (a00), [a01] "r" (a01), [a10] "r" (a10), [a11] "r" (a11), [dst] "r" (dst)
- : "cc", "memory", "r4", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d16"
+ : "cc", "memory", "d0", "d1", "d3", "d4", "d5", "d6", "d7", "d16"
);
}
@@ -83,6 +83,7 @@ static inline void Filter_32_alpha_neon(unsigned x, unsigned y,
"vst1.32 {d0[0]}, [%[dst]] \n\t" // store result
:
: [x] "r" (x), [y] "r" (y), [a00] "r" (a00), [a01] "r" (a01), [a10] "r" (a10), [a11] "r" (a11), [dst] "r" (dst), [scale] "r" (scale)
- : "cc", "memory", "r4", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d16"
+ : "cc", "memory", "d0", "d1", "d3", "d4", "d5", "d6", "d7", "d16"
);
}
+
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698