2 /* arm_init.c - NEON optimised filter functions
4 * Copyright (c) 2013 Glenn Randers-Pehrson
5 * Written by Mans Rullgard, 2011.
6 * Last changed in libpng 1.5.17 [July 18, 2013]
8 * This code is released under the libpng license.
9 * For conditions of distribution and use, see the disclaimer
10 * and license in png.h
12 /* Below, after checking __linux__, various non-C90 POSIX 1003.1 functions are
15 #define _POSIX_SOURCE 1
17 #include "../pngpriv.h"
19 #ifdef PNG_READ_SUPPORTED
20 #if PNG_ARM_NEON_OPT > 0
21 #ifdef PNG_ARM_NEON_CHECK_SUPPORTED /* Do run-time checks */
22 #include <signal.h> /* for sig_atomic_t */
25 /* Linux provides access to information about CPU capabilites via
26 * /proc/self/auxv, however Android blocks this while still claiming to be
27 * Linux. The Andoid NDK, however, provides appropriate support.
29 * Documentation: http://www.kandroid.org/ndk/docs/CPU-ARM-NEON.html
31 #include <cpu-features.h>
34 png_have_neon(png_structp png_ptr
)
36 /* This is a whole lot easier than the mess below, however it is probably
37 * implemented as below, therefore it is better to cache the result (these
38 * function calls may be slow!)
41 return android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM
&&
42 (android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON
) != 0;
44 #elif defined(__linux__)
45 /* The generic __linux__ implementation requires reading /proc/self/auxv and
46 * looking at each element for one that records NEON capabilities.
48 #include <unistd.h> /* for POSIX 1003.1 */
49 #include <errno.h> /* for EINTR */
51 #include <sys/types.h>
55 #include <asm/hwcap.h>
57 /* A read call may be interrupted, in which case it returns -1 and sets errno to
58 * EINTR if nothing was done, otherwise (if something was done) a partial read
62 safe_read(png_structp png_ptr
, int fd
, void *buffer_in
, size_t nbytes
)
65 char *buffer
= png_voidcast(char*, buffer_in
);
72 /* Passing nread > INT_MAX to read is implementation defined in POSIX
73 * 1003.1, therefore despite the unsigned argument portable code must
74 * limit the value to INT_MAX!
80 nread
= (unsigned int)/*SAFE*/nbytes
;
82 iread
= read(fd
, buffer
, nread
);
86 /* This is the devil in the details, a read can terminate early with 0
87 * bytes read because of EINTR, yet it still returns -1 otherwise end
88 * of file cannot be distinguished.
92 png_warning(png_ptr
, "/proc read failed");
93 return 0; /* I.e. a permanent failure */
99 /* Not a valid 'read' result: */
100 png_warning(png_ptr
, "OS /proc read bug");
106 /* Continue reading until a permanent failure, or EOF */
108 nbytes
-= (unsigned int)/*SAFE*/iread
;
109 ntotal
+= (unsigned int)/*SAFE*/iread
;
116 return ntotal
; /* nbytes == 0 */
120 png_have_neon(png_structp png_ptr
)
122 int fd
= open("/proc/self/auxv", O_RDONLY
);
125 /* Failsafe: failure to open means no NEON */
128 png_warning(png_ptr
, "/proc/self/auxv open failed");
132 while (safe_read(png_ptr
, fd
, &aux
, sizeof aux
) == sizeof aux
)
134 if (aux
.a_type
== AT_HWCAP
&& (aux
.a_un
.a_val
& HWCAP_NEON
) != 0)
145 /* We don't know how to do a run-time check on this system */
146 # error "no support for run-time ARM NEON checks"
147 #endif /* OS checks */
148 #endif /* PNG_ARM_NEON_CHECK_SUPPORTED */
150 #ifndef PNG_ALIGNED_MEMORY_SUPPORTED
151 # error "ALIGNED_MEMORY is required; set: -DPNG_ALIGNED_MEMORY_SUPPORTED"
155 png_init_filter_functions_neon(png_structp pp
, unsigned int bpp
)
157 #ifdef PNG_ARM_NEON_API_SUPPORTED
158 switch ((pp
->options
>> PNG_ARM_NEON
) & 3)
160 case PNG_OPTION_UNSET
:
161 /* Allow the run-time check to execute if it has been enabled -
162 * thus both API and CHECK can be turned on. If it isn't supported
163 * this case will fall through to the 'default' below, which just
166 #endif /* PNG_ARM_NEON_API_SUPPORTED */
167 #ifdef PNG_ARM_NEON_CHECK_SUPPORTED
169 static volatile sig_atomic_t no_neon
= -1; /* not checked */
172 no_neon
= !png_have_neon(pp
);
177 #ifdef PNG_ARM_NEON_API_SUPPORTED
180 #endif /* PNG_ARM_NEON_CHECK_SUPPORTED */
181 #ifdef PNG_ARM_NEON_API_SUPPORTED
183 /* Option turned on */
186 default: /* OFF or INVALID */
191 /* IMPORTANT: any new external functions used here must be declared using
192 * PNG_INTERNAL_FUNCTION in ../pngpriv.h. This is required so that the
193 * 'prefix' option to configure works:
195 * ./configure --with-libpng-prefix=foobar_
197 * Verify you have got this right by running the above command, doing a build
198 * and examining pngprefix.h; it must contain a #define for every external
199 * function you add. (Notice that this happens automatically for the
200 * initialization function.)
202 pp
->read_filter
[PNG_FILTER_VALUE_UP
-1] = png_read_filter_row_up_neon
;
206 pp
->read_filter
[PNG_FILTER_VALUE_SUB
-1] = png_read_filter_row_sub3_neon
;
207 pp
->read_filter
[PNG_FILTER_VALUE_AVG
-1] = png_read_filter_row_avg3_neon
;
208 pp
->read_filter
[PNG_FILTER_VALUE_PAETH
-1] =
209 png_read_filter_row_paeth3_neon
;
214 pp
->read_filter
[PNG_FILTER_VALUE_SUB
-1] = png_read_filter_row_sub4_neon
;
215 pp
->read_filter
[PNG_FILTER_VALUE_AVG
-1] = png_read_filter_row_avg4_neon
;
216 pp
->read_filter
[PNG_FILTER_VALUE_PAETH
-1] =
217 png_read_filter_row_paeth4_neon
;
220 #endif /* PNG_ARM_NEON_OPT > 0 */
221 #endif /* PNG_READ_SUPPORTED */