sl@0
|
1 |
/*
|
sl@0
|
2 |
* LIBOIL - Library of Optimized Inner Loops
|
sl@0
|
3 |
* Copyright (c) 2004 David A. Schleef <ds@schleef.org>
|
sl@0
|
4 |
* All rights reserved.
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
7 |
* modification, are permitted provided that the following conditions
|
sl@0
|
8 |
* are met:
|
sl@0
|
9 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
10 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
11 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
12 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
13 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
sl@0
|
16 |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
sl@0
|
17 |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
18 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
sl@0
|
19 |
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
sl@0
|
20 |
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
21 |
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
22 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
23 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
sl@0
|
24 |
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
sl@0
|
25 |
* POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <stdio.h>
|
sl@0
|
30 |
#include <liboil/liboil.h>
|
sl@0
|
31 |
#include <ctype.h>
|
sl@0
|
32 |
#include <stdlib.h>
|
sl@0
|
33 |
#include <string.h>
|
sl@0
|
34 |
|
sl@0
|
35 |
#include <liboil/liboilprototype.h>
|
sl@0
|
36 |
|
sl@0
|
37 |
static char * xstrdup (const char *s);
|
sl@0
|
38 |
|
sl@0
|
39 |
void print_header (void);
|
sl@0
|
40 |
void print_footer (void);
|
sl@0
|
41 |
|
sl@0
|
42 |
int main (int argc, char *argv[])
|
sl@0
|
43 |
{
|
sl@0
|
44 |
OilFunctionClass *klass;
|
sl@0
|
45 |
OilPrototype *proto;
|
sl@0
|
46 |
int i;
|
sl@0
|
47 |
int n;
|
sl@0
|
48 |
char *string;
|
sl@0
|
49 |
char *arg_string;
|
sl@0
|
50 |
|
sl@0
|
51 |
oil_init_no_optimize ();
|
sl@0
|
52 |
|
sl@0
|
53 |
print_header ();
|
sl@0
|
54 |
|
sl@0
|
55 |
n = oil_class_get_n_classes ();
|
sl@0
|
56 |
for (i=0;i<n; i++ ){
|
sl@0
|
57 |
klass = oil_class_get_by_index (i);
|
sl@0
|
58 |
|
sl@0
|
59 |
if(klass->prototype) {
|
sl@0
|
60 |
proto = oil_prototype_from_string (klass->prototype);
|
sl@0
|
61 |
if (proto) {
|
sl@0
|
62 |
string = oil_prototype_to_string (proto);
|
sl@0
|
63 |
if (strlen (string) == 0) {
|
sl@0
|
64 |
free (string);
|
sl@0
|
65 |
string = xstrdup("void");
|
sl@0
|
66 |
}
|
sl@0
|
67 |
arg_string = oil_prototype_to_arg_string (proto);
|
sl@0
|
68 |
|
sl@0
|
69 |
printf ("#undef oil_%s\n", klass->name);
|
sl@0
|
70 |
printf ("void\n");
|
sl@0
|
71 |
printf ("oil_%s (%s)\n", klass->name, string);
|
sl@0
|
72 |
printf ("{\n");
|
sl@0
|
73 |
printf (" if (_oil_function_class_%s.func == NULL) {\n", klass->name);
|
sl@0
|
74 |
printf (" oil_class_optimize (&_oil_function_class_%s);\n", klass->name);
|
sl@0
|
75 |
printf (" }\n");
|
sl@0
|
76 |
printf (" ((void (*)(%s))(_oil_function_class_%s.func))(%s);\n",
|
sl@0
|
77 |
string, klass->name, arg_string);
|
sl@0
|
78 |
printf ("}\n");
|
sl@0
|
79 |
printf ("\n");
|
sl@0
|
80 |
|
sl@0
|
81 |
oil_prototype_free (proto);
|
sl@0
|
82 |
free (string);
|
sl@0
|
83 |
free (arg_string);
|
sl@0
|
84 |
} else {
|
sl@0
|
85 |
printf("/* ERROR: could not parse %s(%s) */\n", klass->name, klass->prototype);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
}
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
print_footer ();
|
sl@0
|
91 |
|
sl@0
|
92 |
return 0;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
void print_header (void)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
printf ("/*\n");
|
sl@0
|
98 |
printf (" * LIBOIL - Library of Optimized Inner Loops\n");
|
sl@0
|
99 |
printf (" * Copyright (c) 2004 David A. Schleef <ds@schleef.org>\n");
|
sl@0
|
100 |
printf (" * All rights reserved.\n");
|
sl@0
|
101 |
printf (" *\n");
|
sl@0
|
102 |
printf (" * Redistribution and use in source and binary forms, with or without\n");
|
sl@0
|
103 |
printf (" * modification, are permitted provided that the following conditions\n");
|
sl@0
|
104 |
printf (" * are met:\n");
|
sl@0
|
105 |
printf (" * 1. Redistributions of source code must retain the above copyright\n");
|
sl@0
|
106 |
printf (" * notice, this list of conditions and the following disclaimer.\n");
|
sl@0
|
107 |
printf (" * 2. Redistributions in binary form must reproduce the above copyright\n");
|
sl@0
|
108 |
printf (" * notice, this list of conditions and the following disclaimer in the\n");
|
sl@0
|
109 |
printf (" * documentation and/or other materials provided with the distribution.\n");
|
sl@0
|
110 |
printf (" * \n");
|
sl@0
|
111 |
printf (" * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n");
|
sl@0
|
112 |
printf (" * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n");
|
sl@0
|
113 |
printf (" * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n");
|
sl@0
|
114 |
printf (" * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n");
|
sl@0
|
115 |
printf (" * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n");
|
sl@0
|
116 |
printf (" * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n");
|
sl@0
|
117 |
printf (" * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n");
|
sl@0
|
118 |
printf (" * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n");
|
sl@0
|
119 |
printf (" * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n");
|
sl@0
|
120 |
printf (" * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n");
|
sl@0
|
121 |
printf (" * POSSIBILITY OF SUCH DAMAGE.\n");
|
sl@0
|
122 |
printf (" */\n");
|
sl@0
|
123 |
printf ("\n");
|
sl@0
|
124 |
printf ("/* This file is automatically generated. Do not edit. */\n");
|
sl@0
|
125 |
printf ("\n");
|
sl@0
|
126 |
printf ("#include <liboil/liboil.h>\n");
|
sl@0
|
127 |
printf ("#include <liboil/liboilclasses.h>\n");
|
sl@0
|
128 |
printf ("#include <liboil/liboilfunction.h>\n");
|
sl@0
|
129 |
printf ("\n");
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
void print_footer (void)
|
sl@0
|
133 |
{
|
sl@0
|
134 |
printf ("\n");
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
static char *
|
sl@0
|
138 |
xstrdup (const char *s)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
int n = strlen(s);
|
sl@0
|
141 |
char *t;
|
sl@0
|
142 |
|
sl@0
|
143 |
n = strlen(s);
|
sl@0
|
144 |
t = malloc(n + 1);
|
sl@0
|
145 |
memcpy (t, s, n);
|
sl@0
|
146 |
t[n] = 0;
|
sl@0
|
147 |
|
sl@0
|
148 |
return t;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|