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

Unified Diff: skia/skia_library_opts.gyp

Issue 225853003: Force more inlining in Skia ARM NEON optimizations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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: skia/skia_library_opts.gyp
diff --git a/skia/skia_library_opts.gyp b/skia/skia_library_opts.gyp
index 1c9713f718a6b1b655ab8b1091efc1103a0650c6..9dab280bed23856563354bc0b23e7bb33827f030 100644
--- a/skia/skia_library_opts.gyp
+++ b/skia/skia_library_opts.gyp
@@ -245,13 +245,18 @@
'../third_party/skia/src/core',
'../third_party/skia/src/opts',
],
+ # The special cases are performance critical and suffer from lack
mtklein 2014/05/07 14:49:42 Is there any way we can do this with SK_ALWAYS_INL
+ # of inlining. Keep below in sync with -finline-limit=XX usage.
'cflags!': [
+ '-Os',
+ '-finline-limit=64',
'-fno-omit-frame-pointer',
'-mfpu=vfp', # remove them all, just in case.
'-mfpu=vfpv3',
'-mfpu=vfpv3-d16',
],
'cflags': [
+ '-O2',
'-mfpu=neon',
'-fomit-frame-pointer',
],
« 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