epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 1 | { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 2 | 'targets': [ |
| 3 | # Due to an unfortunate intersection of lameness between gcc and gyp, |
| 4 | # we have to build the *_SSE2.cpp files in a separate target. The |
| 5 | # gcc lameness is that, in order to compile SSE2 intrinsics code, it |
| 6 | # must be passed the -msse2 flag. However, with this flag, it may |
| 7 | # emit SSE2 instructions even for scalar code, such as the CPUID |
| 8 | # test used to test for the presence of SSE2. So that, and all other |
| 9 | # code must be compiled *without* -msse2. The gyp lameness is that it |
| 10 | # does not allow file-specific CFLAGS, so we must create this extra |
| 11 | # target for those files to be compiled with -msse2. |
| 12 | # |
| 13 | # This is actually only a problem on 32-bit Linux (all Intel Macs have |
| 14 | # SSE2, Linux x86_64 has SSE2 by definition, and MSC will happily emit |
| 15 | # SSE2 from instrinsics, while generating plain ol' 386 for everything |
| 16 | # else). However, to keep the .gyp file simple and avoid platform-specific |
| 17 | # build breakage, we do this on all platforms. |
| 18 | |
| 19 | # For about the same reason, we need to compile the ARM opts files |
| 20 | # separately as well. |
| 21 | { |
| 22 | 'target_name': 'opts', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 23 | 'product_name': 'skia_opts', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 24 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 25 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 26 | 'dependencies': [ |
| 27 | 'core.gyp:*', |
| 28 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 29 | 'include_dirs': [ |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 30 | '../src/core', |
djsollen@google.com | a44e6c6 | 2012-01-09 14:38:25 +0000 | [diff] [blame] | 31 | '../src/opts', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 32 | ], |
| 33 | 'conditions': [ |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 34 | [ 'skia_arch_type == "x86" and skia_os != "ios"', { |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 35 | 'conditions': [ |
mtklein@google.com | d9d5c05 | 2013-07-31 20:09:25 +0000 | [diff] [blame] | 36 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]', { |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 37 | 'cflags': [ |
| 38 | '-msse2', |
| 39 | ], |
| 40 | }], |
| 41 | ], |
humper@google.com | b088947 | 2013-07-09 21:37:14 +0000 | [diff] [blame] | 42 | 'include_dirs': [ |
| 43 | '../include/utils', |
| 44 | ], |
mtklein@google.com | d9d5c05 | 2013-07-31 20:09:25 +0000 | [diff] [blame] | 45 | 'dependencies': [ |
| 46 | 'opts_ssse3', |
| 47 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 48 | 'sources': [ |
djsollen@google.com | a44e6c6 | 2012-01-09 14:38:25 +0000 | [diff] [blame] | 49 | '../src/opts/opts_check_SSE2.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 50 | '../src/opts/SkBitmapProcState_opts_SSE2.cpp', |
humper@google.com | b088947 | 2013-07-09 21:37:14 +0000 | [diff] [blame] | 51 | '../src/opts/SkBitmapFilter_opts_SSE2.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 52 | '../src/opts/SkBlitRow_opts_SSE2.cpp', |
tomhudson@google.com | 8dd90a9 | 2012-03-19 13:49:50 +0000 | [diff] [blame] | 53 | '../src/opts/SkBlitRect_opts_SSE2.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 54 | '../src/opts/SkUtils_opts_SSE2.cpp', |
| 55 | ], |
| 56 | }], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 57 | [ 'skia_arch_type == "arm" and arm_version >= 7', { |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 58 | # The assembly uses the frame pointer register (r7 in Thumb/r11 in |
| 59 | # ARM), the compiler doesn't like that. |
| 60 | 'cflags!': [ |
| 61 | '-fno-omit-frame-pointer', |
djsollen@google.com | 5afbbc4 | 2012-11-29 15:09:58 +0000 | [diff] [blame] | 62 | '-mapcs-frame', |
| 63 | '-mapcs', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 64 | ], |
| 65 | 'cflags': [ |
| 66 | '-fomit-frame-pointer', |
djsollen@google.com | 5afbbc4 | 2012-11-29 15:09:58 +0000 | [diff] [blame] | 67 | '-mno-apcs-frame', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 68 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 69 | 'variables': { |
| 70 | 'arm_neon_optional%': '<(arm_neon_optional>', |
| 71 | }, |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 72 | 'sources': [ |
djsollen@google.com | a44e6c6 | 2012-01-09 14:38:25 +0000 | [diff] [blame] | 73 | '../src/opts/opts_check_arm.cpp', |
| 74 | '../src/opts/memset.arm.S', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 75 | '../src/opts/SkBitmapProcState_opts_arm.cpp', |
commit-bot@chromium.org | e997c26 | 2013-08-28 15:07:58 +0000 | [diff] [blame] | 76 | '../src/opts/SkBlitMask_opts_arm.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 77 | '../src/opts/SkBlitRow_opts_arm.cpp', |
digit@google.com | a8dd1ce | 2012-08-08 22:06:29 +0000 | [diff] [blame] | 78 | '../src/opts/SkBlitRow_opts_arm.h', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 79 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 80 | 'conditions': [ |
| 81 | [ 'arm_neon == 1 or arm_neon_optional == 1', { |
| 82 | 'dependencies': [ |
| 83 | 'opts_neon', |
| 84 | ] |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 85 | }], |
| 86 | [ 'skia_os == "ios"', { |
| 87 | 'sources!': [ |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 88 | # these fail to compile under xcode for ios |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 89 | '../src/opts/memset.arm.S', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 90 | '../src/opts/SkBitmapProcState_opts_arm.cpp', |
| 91 | '../src/opts/SkBlitRow_opts_arm.cpp', |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 92 | ], |
| 93 | }], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 94 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 95 | }], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 96 | [ '(skia_arch_type == "arm" and arm_version < 7) or (skia_os == "ios")', { |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 97 | 'sources': [ |
| 98 | '../src/opts/SkBitmapProcState_opts_none.cpp', |
commit-bot@chromium.org | e997c26 | 2013-08-28 15:07:58 +0000 | [diff] [blame] | 99 | '../src/opts/SkBlitMask_opts_none.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 100 | '../src/opts/SkBlitRow_opts_none.cpp', |
| 101 | '../src/opts/SkUtils_opts_none.cpp', |
| 102 | ], |
| 103 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 104 | ], |
| 105 | }, |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 106 | # For the same lame reasons as what is done for skia_opts, we have to |
| 107 | # create another target specifically for SSSE3 code as we would not want |
| 108 | # to compile the SSE2 code with -mssse3 which would potentially allow |
| 109 | # gcc to generate SSSE3 code. |
| 110 | { |
| 111 | 'target_name': 'opts_ssse3', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 112 | 'product_name': 'skia_opts_ssse3', |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 113 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 114 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 115 | 'dependencies': [ |
| 116 | 'core.gyp:*', |
| 117 | ], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 118 | 'include_dirs': [ |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 119 | '../src/core', |
| 120 | ], |
| 121 | 'conditions': [ |
mtklein@google.com | d9d5c05 | 2013-07-31 20:09:25 +0000 | [diff] [blame] | 122 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]', { |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 123 | 'cflags': [ |
| 124 | '-mssse3', |
| 125 | ], |
| 126 | }], |
commit-bot@chromium.org | 4460de4 | 2013-08-06 18:13:01 +0000 | [diff] [blame] | 127 | # (Mac has -mssse3 globally.) |
djsollen@google.com | e341cb3 | 2012-06-28 16:08:05 +0000 | [diff] [blame] | 128 | [ 'skia_arch_type == "x86"', { |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 129 | 'sources': [ |
| 130 | '../src/opts/SkBitmapProcState_opts_SSSE3.cpp', |
| 131 | ], |
| 132 | }], |
| 133 | ], |
| 134 | }, |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 135 | # NEON code must be compiled with -mfpu=neon which also affects scalar |
| 136 | # code. To support dynamic NEON code paths, we need to build all |
| 137 | # NEON-specific sources in a separate static library. The situation |
| 138 | # is very similar to the SSSE3 one. |
| 139 | { |
| 140 | 'target_name': 'opts_neon', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 141 | 'product_name': 'skia_opts_neon', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 142 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 143 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 144 | 'dependencies': [ |
| 145 | 'core.gyp:*', |
| 146 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 147 | 'include_dirs': [ |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 148 | '../src/core', |
digit@google.com | fce02ac | 2012-08-01 14:25:07 +0000 | [diff] [blame] | 149 | '../src/opts', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 150 | ], |
| 151 | 'cflags!': [ |
| 152 | '-fno-omit-frame-pointer', |
| 153 | '-mfpu=vfp', # remove them all, just in case. |
| 154 | '-mfpu=vfpv3', |
| 155 | '-mfpu=vfpv3-d16', |
| 156 | ], |
| 157 | 'cflags': [ |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 158 | '-mfpu=neon', |
digit@google.com | fce02ac | 2012-08-01 14:25:07 +0000 | [diff] [blame] | 159 | '-fomit-frame-pointer', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 160 | ], |
djsollen@google.com | 4dcc624 | 2013-01-23 18:56:38 +0000 | [diff] [blame] | 161 | 'ldflags': [ |
| 162 | '-march=armv7-a', |
| 163 | '-Wl,--fix-cortex-a8', |
| 164 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 165 | 'sources': [ |
| 166 | '../src/opts/memset16_neon.S', |
| 167 | '../src/opts/memset32_neon.S', |
digit@google.com | 3ada0ef | 2012-08-13 14:06:34 +0000 | [diff] [blame] | 168 | '../src/opts/SkBitmapProcState_arm_neon.cpp', |
digit@google.com | fce02ac | 2012-08-01 14:25:07 +0000 | [diff] [blame] | 169 | '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp', |
| 170 | '../src/opts/SkBitmapProcState_matrix_clamp_neon.h', |
| 171 | '../src/opts/SkBitmapProcState_matrix_repeat_neon.h', |
digit@google.com | a8dd1ce | 2012-08-08 22:06:29 +0000 | [diff] [blame] | 172 | '../src/opts/SkBlitRow_opts_arm_neon.cpp', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 173 | ], |
| 174 | }, |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 175 | ], |
| 176 | } |
| 177 | |
| 178 | # Local Variables: |
| 179 | # tab-width:2 |
| 180 | # indent-tabs-mode:nil |
| 181 | # End: |
| 182 | # vim: set expandtab tabstop=2 shiftwidth=2: |