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 |
void print_header (void);
|
sl@0
|
38 |
void print_footer (void);
|
sl@0
|
39 |
void add_pointer_mask (unsigned int mask);
|
sl@0
|
40 |
|
sl@0
|
41 |
unsigned int proto_masks[1000];
|
sl@0
|
42 |
int n_for_mask[1000];
|
sl@0
|
43 |
int n_proto_masks;
|
sl@0
|
44 |
|
sl@0
|
45 |
int main (int argc, char *argv[])
|
sl@0
|
46 |
{
|
sl@0
|
47 |
OilFunctionClass *klass;
|
sl@0
|
48 |
OilPrototype *proto;
|
sl@0
|
49 |
int i;
|
sl@0
|
50 |
int j;
|
sl@0
|
51 |
int n;
|
sl@0
|
52 |
unsigned int pointer_mask;
|
sl@0
|
53 |
|
sl@0
|
54 |
oil_init_no_optimize ();
|
sl@0
|
55 |
|
sl@0
|
56 |
print_header ();
|
sl@0
|
57 |
|
sl@0
|
58 |
n = oil_class_get_n_classes ();
|
sl@0
|
59 |
for (i=0;i<n; i++ ){
|
sl@0
|
60 |
klass = oil_class_get_by_index (i);
|
sl@0
|
61 |
|
sl@0
|
62 |
if(klass->prototype) {
|
sl@0
|
63 |
proto = oil_prototype_from_string (klass->prototype);
|
sl@0
|
64 |
if (proto) {
|
sl@0
|
65 |
pointer_mask = 1;
|
sl@0
|
66 |
|
sl@0
|
67 |
for (j=0;j<proto->n_params;j++){
|
sl@0
|
68 |
pointer_mask <<= 1;
|
sl@0
|
69 |
if (proto->params[j].is_pointer) pointer_mask |= 1;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
add_pointer_mask (pointer_mask);
|
sl@0
|
73 |
|
sl@0
|
74 |
oil_prototype_free (proto);
|
sl@0
|
75 |
} else {
|
sl@0
|
76 |
printf("/* ERROR: could not parse %s(%s) */\n", klass->name, klass->prototype);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
}
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
for(i=0;i<n_proto_masks;i++){
|
sl@0
|
82 |
unsigned int bit;
|
sl@0
|
83 |
unsigned int hibit;
|
sl@0
|
84 |
|
sl@0
|
85 |
pointer_mask = proto_masks[i];
|
sl@0
|
86 |
for(hibit=1;hibit<=pointer_mask;hibit<<=1);
|
sl@0
|
87 |
hibit>>=2;
|
sl@0
|
88 |
|
sl@0
|
89 |
printf(" case 0x%04x:\n", pointer_mask);
|
sl@0
|
90 |
printf(" oil_profile_start (prof);\n");
|
sl@0
|
91 |
printf(" ((void (*)(");
|
sl@0
|
92 |
if(hibit == 0) {
|
sl@0
|
93 |
printf("void");
|
sl@0
|
94 |
} else {
|
sl@0
|
95 |
for(bit=hibit;bit;bit >>= 1) {
|
sl@0
|
96 |
if (pointer_mask & bit) {
|
sl@0
|
97 |
printf("void *");
|
sl@0
|
98 |
} else {
|
sl@0
|
99 |
printf("int");
|
sl@0
|
100 |
}
|
sl@0
|
101 |
if (bit > 1) {
|
sl@0
|
102 |
printf(",");
|
sl@0
|
103 |
}
|
sl@0
|
104 |
}
|
sl@0
|
105 |
}
|
sl@0
|
106 |
printf("))func)\n");
|
sl@0
|
107 |
printf(" (");
|
sl@0
|
108 |
j=0;
|
sl@0
|
109 |
for(bit=hibit;bit;bit >>= 1) {
|
sl@0
|
110 |
if (pointer_mask & bit) {
|
sl@0
|
111 |
printf("(void *)args[%d]", j);
|
sl@0
|
112 |
} else {
|
sl@0
|
113 |
printf("(int)args[%d]", j);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
if (bit > 1) {
|
sl@0
|
116 |
printf(",");
|
sl@0
|
117 |
}
|
sl@0
|
118 |
j++;
|
sl@0
|
119 |
}
|
sl@0
|
120 |
printf(");\n");
|
sl@0
|
121 |
printf(" oil_profile_stop (prof);\n");
|
sl@0
|
122 |
printf(" break;\n");
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
print_footer ();
|
sl@0
|
126 |
|
sl@0
|
127 |
return 0;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
void
|
sl@0
|
131 |
add_pointer_mask (unsigned int mask)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
int i;
|
sl@0
|
134 |
for(i=0;i<n_proto_masks;i++){
|
sl@0
|
135 |
if (proto_masks[i] == mask) {
|
sl@0
|
136 |
n_for_mask[i]++;
|
sl@0
|
137 |
return;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
}
|
sl@0
|
140 |
proto_masks[n_proto_masks] = mask;
|
sl@0
|
141 |
n_for_mask[n_proto_masks]++;
|
sl@0
|
142 |
n_proto_masks++;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
void print_header (void)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
printf ("/*\n");
|
sl@0
|
148 |
printf (" * LIBOIL - Library of Optimized Inner Loops\n");
|
sl@0
|
149 |
printf (" * Copyright (c) 2004 David A. Schleef <ds@schleef.org>\n");
|
sl@0
|
150 |
printf (" * All rights reserved.\n");
|
sl@0
|
151 |
printf (" *\n");
|
sl@0
|
152 |
printf (" * Redistribution and use in source and binary forms, with or without\n");
|
sl@0
|
153 |
printf (" * modification, are permitted provided that the following conditions\n");
|
sl@0
|
154 |
printf (" * are met:\n");
|
sl@0
|
155 |
printf (" * 1. Redistributions of source code must retain the above copyright\n");
|
sl@0
|
156 |
printf (" * notice, this list of conditions and the following disclaimer.\n");
|
sl@0
|
157 |
printf (" * 2. Redistributions in binary form must reproduce the above copyright\n");
|
sl@0
|
158 |
printf (" * notice, this list of conditions and the following disclaimer in the\n");
|
sl@0
|
159 |
printf (" * documentation and/or other materials provided with the distribution.\n");
|
sl@0
|
160 |
printf (" * \n");
|
sl@0
|
161 |
printf (" * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n");
|
sl@0
|
162 |
printf (" * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n");
|
sl@0
|
163 |
printf (" * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n");
|
sl@0
|
164 |
printf (" * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n");
|
sl@0
|
165 |
printf (" * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n");
|
sl@0
|
166 |
printf (" * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n");
|
sl@0
|
167 |
printf (" * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n");
|
sl@0
|
168 |
printf (" * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n");
|
sl@0
|
169 |
printf (" * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n");
|
sl@0
|
170 |
printf (" * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n");
|
sl@0
|
171 |
printf (" * POSSIBILITY OF SUCH DAMAGE.\n");
|
sl@0
|
172 |
printf (" */\n");
|
sl@0
|
173 |
printf ("\n");
|
sl@0
|
174 |
printf ("/* This file is automatically generated. Do not edit. */\n");
|
sl@0
|
175 |
printf ("\n");
|
sl@0
|
176 |
printf ("#ifdef HAVE_CONFIG_H\n");
|
sl@0
|
177 |
printf ("#include <config.h>\n");
|
sl@0
|
178 |
printf ("#endif\n");
|
sl@0
|
179 |
printf ("\n");
|
sl@0
|
180 |
printf ("#include <liboil/liboiltest.h>\n");
|
sl@0
|
181 |
printf ("#include <liboil/liboildebug.h>\n");
|
sl@0
|
182 |
printf ("#include <liboil/liboilprofile.h>\n");
|
sl@0
|
183 |
printf ("\n");
|
sl@0
|
184 |
printf ("void\n");
|
sl@0
|
185 |
printf ("_oil_test_marshal_function (void *func, unsigned long *args, int n_args,\n");
|
sl@0
|
186 |
printf (" unsigned int pointer_mask, OilProfile *prof)\n");
|
sl@0
|
187 |
printf ("{\n");
|
sl@0
|
188 |
printf (" switch (pointer_mask) {\n");
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
void print_footer (void)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
printf (" default:\n");
|
sl@0
|
194 |
printf (" OIL_ERROR (\"unhandled marshal case\");\n");
|
sl@0
|
195 |
printf (" }\n");
|
sl@0
|
196 |
printf ("}\n");
|
sl@0
|
197 |
printf ("\n");
|
sl@0
|
198 |
}
|
sl@0
|
199 |
|