os/ossrv/genericopenlibs/liboil/src/build_class_decls.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
sl@0
    40
int main (int argc, char *argv[])
sl@0
    41
{
sl@0
    42
  OilFunctionClass *klass;
sl@0
    43
  int i;
sl@0
    44
  int n;
sl@0
    45
sl@0
    46
  oil_init_no_optimize ();
sl@0
    47
sl@0
    48
  print_header ();
sl@0
    49
sl@0
    50
  n = oil_class_get_n_classes ();
sl@0
    51
  for (i=0;i<n; i++ ){
sl@0
    52
    klass = oil_class_get_by_index (i);
sl@0
    53
sl@0
    54
    printf ("OIL_DECLARE_CLASS(%s);\n", klass->name);
sl@0
    55
  }
sl@0
    56
sl@0
    57
  print_footer ();
sl@0
    58
sl@0
    59
  return 0;
sl@0
    60
}
sl@0
    61
sl@0
    62
void print_header (void)
sl@0
    63
{
sl@0
    64
  printf ("/*\n");
sl@0
    65
  printf (" * LIBOIL - Library of Optimized Inner Loops\n");
sl@0
    66
  printf (" * Copyright (c) 2005 David A. Schleef <ds@schleef.org>\n");
sl@0
    67
  printf (" * All rights reserved.\n");
sl@0
    68
  printf (" *\n");
sl@0
    69
  printf (" * Redistribution and use in source and binary forms, with or without\n");
sl@0
    70
  printf (" * modification, are permitted provided that the following conditions\n");
sl@0
    71
  printf (" * are met:\n");
sl@0
    72
  printf (" * 1. Redistributions of source code must retain the above copyright\n");
sl@0
    73
  printf (" *    notice, this list of conditions and the following disclaimer.\n");
sl@0
    74
  printf (" * 2. Redistributions in binary form must reproduce the above copyright\n");
sl@0
    75
  printf (" *    notice, this list of conditions and the following disclaimer in the\n");
sl@0
    76
  printf (" *    documentation and/or other materials provided with the distribution.\n");
sl@0
    77
  printf (" * \n");
sl@0
    78
  printf (" * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n");
sl@0
    79
  printf (" * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n");
sl@0
    80
  printf (" * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n");
sl@0
    81
  printf (" * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n");
sl@0
    82
  printf (" * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n");
sl@0
    83
  printf (" * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n");
sl@0
    84
  printf (" * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n");
sl@0
    85
  printf (" * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n");
sl@0
    86
  printf (" * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n");
sl@0
    87
  printf (" * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n");
sl@0
    88
  printf (" * POSSIBILITY OF SUCH DAMAGE.\n");
sl@0
    89
  printf (" */\n");
sl@0
    90
  printf ("\n");
sl@0
    91
  printf ("/* This file is automatically generated.  Do not edit. */\n");
sl@0
    92
  printf ("\n");
sl@0
    93
  printf ("#ifndef _LIBOIL_CLASSES_H_\n");
sl@0
    94
  printf ("#define _LIBOIL_CLASSES_H_\n");
sl@0
    95
  printf ("\n");
sl@0
    96
  printf ("#include <liboil/liboilfunction.h>\n");
sl@0
    97
  printf ("\n");
sl@0
    98
  printf ("#ifdef __cplusplus\n");
sl@0
    99
  printf ("extern \"C\" {\n");
sl@0
   100
  printf ("#endif\n");
sl@0
   101
  printf ("\n");
sl@0
   102
}
sl@0
   103
sl@0
   104
void print_footer (void)
sl@0
   105
{
sl@0
   106
  printf ("\n");
sl@0
   107
  printf ("#ifdef __cplusplus\n");
sl@0
   108
  printf ("}\n");
sl@0
   109
  printf ("#endif\n");
sl@0
   110
  printf ("\n");
sl@0
   111
  printf ("#endif\n");
sl@0
   112
  printf ("\n");
sl@0
   113
}
sl@0
   114