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