blob: d5a4b9d4e8ac94b30da7566883f61eb477e49b3d [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
epoger@google.comae85aea2011-05-31 13:50:51 +00002 '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',
23 'type': 'static_library',
24 'include_dirs': [
25 '../include/config',
26 '../include/core',
27 '../src/core',
djsollen@google.coma44e6c62012-01-09 14:38:25 +000028 '../src/opts',
epoger@google.comae85aea2011-05-31 13:50:51 +000029 ],
30 'conditions': [
caryclark@google.com867cbd82012-09-20 15:45:41 +000031 [ 'skia_arch_type == "x86" and skia_os != "ios"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +000032 'conditions': [
33 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
34 'cflags': [
35 '-msse2',
36 ],
37 }],
38 ],
djsollen@google.com58629292011-11-03 13:08:29 +000039 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000040 '../src/opts/opts_check_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000041 '../src/opts/SkBitmapProcState_opts_SSE2.cpp',
42 '../src/opts/SkBlitRow_opts_SSE2.cpp',
tomhudson@google.com8dd90a92012-03-19 13:49:50 +000043 '../src/opts/SkBlitRect_opts_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000044 '../src/opts/SkUtils_opts_SSE2.cpp',
45 ],
tomhudson@google.com95ad1552012-02-14 18:28:54 +000046 'dependencies': [
47 'opts_ssse3',
48 ],
djsollen@google.com58629292011-11-03 13:08:29 +000049 }],
djsollen@google.come341cb32012-06-28 16:08:05 +000050 [ 'skia_arch_type == "arm" and armv7 == 1', {
djsollen@google.com58629292011-11-03 13:08:29 +000051 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
52 # ARM), the compiler doesn't like that.
53 'cflags!': [
54 '-fno-omit-frame-pointer',
55 ],
56 'cflags': [
57 '-fomit-frame-pointer',
58 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000059 'variables': {
60 'arm_neon_optional%': '<(arm_neon_optional>',
61 },
djsollen@google.com58629292011-11-03 13:08:29 +000062 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000063 '../src/opts/opts_check_arm.cpp',
64 '../src/opts/memset.arm.S',
djsollen@google.com58629292011-11-03 13:08:29 +000065 '../src/opts/SkBitmapProcState_opts_arm.cpp',
66 '../src/opts/SkBlitRow_opts_arm.cpp',
digit@google.coma8dd1ce2012-08-08 22:06:29 +000067 '../src/opts/SkBlitRow_opts_arm.h',
djsollen@google.com58629292011-11-03 13:08:29 +000068 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000069 'conditions': [
70 [ 'arm_neon == 1 or arm_neon_optional == 1', {
71 'dependencies': [
72 'opts_neon',
73 ]
caryclark@google.com867cbd82012-09-20 15:45:41 +000074 }],
75 [ 'skia_os == "ios"', {
76 'sources!': [
77 # this needs to be rewritten to be xcode-friendly
78 '../src/opts/memset.arm.S',
79 ],
80 }],
digit@google.comeec9dbc2012-05-30 13:54:41 +000081 ],
djsollen@google.com58629292011-11-03 13:08:29 +000082 }],
caryclark@google.com867cbd82012-09-20 15:45:41 +000083 [ '(skia_arch_type == "arm" and armv7 == 0) or (skia_arch_type == "x86" and skia_os == "ios")', {
djsollen@google.com58629292011-11-03 13:08:29 +000084 'sources': [
85 '../src/opts/SkBitmapProcState_opts_none.cpp',
86 '../src/opts/SkBlitRow_opts_none.cpp',
87 '../src/opts/SkUtils_opts_none.cpp',
88 ],
89 }],
epoger@google.comae85aea2011-05-31 13:50:51 +000090 ],
91 },
tomhudson@google.com95ad1552012-02-14 18:28:54 +000092 # For the same lame reasons as what is done for skia_opts, we have to
93 # create another target specifically for SSSE3 code as we would not want
94 # to compile the SSE2 code with -mssse3 which would potentially allow
95 # gcc to generate SSSE3 code.
96 {
97 'target_name': 'opts_ssse3',
98 'type': 'static_library',
99 'include_dirs': [
100 '../include/config',
101 '../include/core',
102 '../src/core',
103 ],
104 'conditions': [
epoger@google.com21099232012-02-14 19:49:19 +0000105 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000106 'cflags': [
107 '-mssse3',
108 ],
109 }],
epoger@google.com21099232012-02-14 19:49:19 +0000110 # TODO(epoger): the following will enable SSSE3 on Macs, but it will
111 # break once we set OTHER_CFLAGS anywhere else (the first setting will
112 # be replaced, not added to)
113 [ 'skia_os in ["mac"]', {
114 'xcode_settings': {
115 'OTHER_CFLAGS': ['-mssse3',],
116 },
117 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000118 [ 'skia_arch_type == "x86"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000119 'sources': [
120 '../src/opts/SkBitmapProcState_opts_SSSE3.cpp',
121 ],
122 }],
123 ],
124 },
digit@google.comeec9dbc2012-05-30 13:54:41 +0000125 # NEON code must be compiled with -mfpu=neon which also affects scalar
126 # code. To support dynamic NEON code paths, we need to build all
127 # NEON-specific sources in a separate static library. The situation
128 # is very similar to the SSSE3 one.
129 {
130 'target_name': 'opts_neon',
131 'type': 'static_library',
132 'include_dirs': [
133 '../include/config',
134 '../include/core',
135 '../src/core',
digit@google.comfce02ac2012-08-01 14:25:07 +0000136 '../src/opts',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000137 ],
138 'cflags!': [
139 '-fno-omit-frame-pointer',
140 '-mfpu=vfp', # remove them all, just in case.
141 '-mfpu=vfpv3',
142 '-mfpu=vfpv3-d16',
143 ],
144 'cflags': [
digit@google.comeec9dbc2012-05-30 13:54:41 +0000145 '-mfpu=neon',
digit@google.comfce02ac2012-08-01 14:25:07 +0000146 '-fomit-frame-pointer',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000147 ],
148 'sources': [
149 '../src/opts/memset16_neon.S',
150 '../src/opts/memset32_neon.S',
digit@google.com3ada0ef2012-08-13 14:06:34 +0000151 '../src/opts/SkBitmapProcState_arm_neon.cpp',
digit@google.comfce02ac2012-08-01 14:25:07 +0000152 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
153 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h',
154 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h',
digit@google.coma8dd1ce2012-08-08 22:06:29 +0000155 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000156 ],
157 },
epoger@google.comae85aea2011-05-31 13:50:51 +0000158 ],
159}
160
161# Local Variables:
162# tab-width:2
163# indent-tabs-mode:nil
164# End:
165# vim: set expandtab tabstop=2 shiftwidth=2: