Update contrib.
2 * LIBOIL - Library of Optimized Inner Loops
3 * Copyright (c) 2003,2004 David A. Schleef <ds@schleef.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
31 #include <liboil/liboilfunction.h>
32 #include <liboil/liboildebug.h>
33 #include <liboil/liboilcpu.h>
34 #include <liboil/liboilfault.h>
35 #include <liboil/liboilutils.h>
52 oil_profile_stamp_xscale(void)
55 __asm__ __volatile__ (
56 " mrc p14, 0, %0, c1, c0, 0 \n"
63 oil_cpu_arm_getflags_cpuinfo (char *cpuinfo)
69 cpuinfo_flags = get_cpuinfo_line(cpuinfo, "Features");
70 if (cpuinfo_flags == NULL) {
75 flags = strsplit(cpuinfo_flags);
76 for (f = flags; *f; f++) {
77 if (strcmp (*f, "edsp") == 0) {
78 OIL_DEBUG ("cpu feature %s", *f);
79 oil_cpu_flags |= OIL_IMPL_FLAG_EDSP;
81 if (strcmp (*f, "vfp") == 0) {
82 OIL_DEBUG ("cpu feature %s", *f);
83 oil_cpu_flags |= OIL_IMPL_FLAG_VFP;
93 get_proc_cpuinfo (void)
99 cpuinfo = malloc(4096);
100 if (cpuinfo == NULL) return NULL;
102 fd = open("/proc/cpuinfo", O_RDONLY);
108 n = read(fd, cpuinfo, 4095);
124 oil_cpu_detect_arch(void)
127 int arm_implementer = 0;
132 cpuinfo = get_proc_cpuinfo();
133 if (cpuinfo == NULL) return;
135 s = get_cpuinfo_line(cpuinfo, "CPU implementer");
137 arm_implementer = strtoul (s, NULL, 0);
141 switch(arm_implementer) {
142 case 0x69: /* Intel */
144 /* ARM chips are known to not have timestamping available from
151 s = get_cpuinfo_line(cpuinfo, "CPU architecture");
153 arm_arch = strtoul (s, NULL, 0);
155 oil_cpu_flags |= OIL_IMPL_FLAG_ARM6;
159 oil_cpu_arm_getflags_cpuinfo (cpuinfo);