Imported Upstream version 0.3.17
[platform/upstream/liboil.git] / testsuite / proto3.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
29 #include <stdio.h>
30 #include <liboil/liboil.h>
31 #include <ctype.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include <liboil/liboilprototype.h>
36
37 void print_param (OilParameter *param);
38
39 /* format:
40  * <isd>[s][0-9*][_[<0-9*,nm[p0-9*]>x]<0-9*,nm[p0-9*]>] */
41
42 char *good_params[] = {
43   "d",
44   "s",
45   "i",
46   "d1",
47   "d2",
48   "ds",
49   "ss",
50   "is",
51   "ds1",
52   "ds2",
53   "d_1",
54   "d_2",
55   "d_4",
56   "d_n",
57   "d_1xn",
58   "d_4xn",
59   "d_nxm",
60   "d_8x8",
61   "d_np2",
62   NULL
63 };
64
65 char *bad_params[] = {
66   "e",
67   NULL
68 };
69
70 int main (int argc, char *argv[])
71 {
72   int i;
73   int ret;
74   int failed = 0;
75   OilParameter param;
76
77   for(i=0;good_params[i];i++){
78     ret = oil_param_from_string (&param, good_params[i]);
79     if (!ret) {
80       printf("***ERROR***\n");
81       failed = 1;
82     }
83     print_param (&param);
84   }
85
86   for(i=0;bad_params[i];i++){
87     ret = oil_param_from_string (&param, bad_params[i]);
88     if (ret) {
89       printf("***ERROR***\n");
90       failed = 1;
91     }
92   }
93
94   return failed;
95 }
96
97 void print_param (OilParameter *param)
98 {
99   if (param->is_stride) {
100     printf ("  %cs%d\n", param->direction, param->index);
101   } else {
102     printf ("  %c%d_", param->direction, param->index);
103     if (param->prestride_var > 0) {
104       printf("%c", (param->prestride_var==1) ? 'n' : 'm');
105       if (param->prestride_length) {
106         printf("p%d", param->prestride_length);
107       }
108     } else {
109       printf("%d", param->prestride_length);
110     }
111     printf("x");
112     if (param->poststride_var > 0) {
113       printf("%c", (param->poststride_var==1) ? 'n' : 'm');
114       if (param->poststride_length) {
115         printf("p%d", param->poststride_length);
116       }
117     } else {
118       printf("%d", param->poststride_length);
119     }
120     printf("\n");
121   }
122
123 }
124