ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/h_extract
(Generate patch)

Comparing OpenCL/h_extract (file contents):
Revision 1.5 by root, Sat May 5 13:07:19 2012 UTC vs.
Revision 1.12 by root, Mon May 7 01:00:31 2012 UTC

1#!/bin/sh 1#!/bin/sh
2 2
3# extracts various bits of data form OpenCL heder files, which are expected to 3# extracts various bits of data form OpenCL heder files, which are expected to
4# be in CL/ 4# be in CL/
5 5
6ALL_H="CL/cl.h CL/cl_ext.h CL/cl_gl.h CL/cl_gl_ext.h CL/cl_d3d10.h CL12/cl_d3d11.h CL/cl_dx9_media_sharing.h"
7
6# constants 8# constants
7cat CL/cl.h CL/cl_ext.h CL/cl_gl.h CL/cl_gl_ext.h CL/cl_d3d10.h | 9(
8 perl -ne 'print "#ifdef CL_$1\nconst_iv($1)\n#endif\n" if /^#define CL_(\S+)/' >constiv.h 10 echo '// autogenerated by h_extract'
11 cat $ALL_H |
12 perl -ne 'print "const_iv($1)\n" if /^#define CL_(\S+)/'
13 cat CL/cl_platform.h |
14 perl -ne 'print "const_iv($1)\n" if /^#define CL_(\S+)\s+[^.]+\s*$/' |
15 sort | uniq |
16 perl -ne 'print unless /const_iv\((?:MAXFLOAT|INFINITY|NAN|HUGE_VALF?)\)/'
17) >constiv.h
18
19# fp constants
20(
21 echo '// autogenerated by h_extract'
22 cat CL/cl_platform.h |
23 perl -ne 'print "const_nv($1)\n" if /^#define\s+CL_(\S+)\s+.*\..*\s*$/'
24 echo "const_nv(MAXFLOAT)"
25 echo "const_nv(INFINITY)"
26 echo "const_nv(HUGE_VAL)"
27 echo "const_nv(HUGE_VALF)"
28) >constnv.h
9 29
10# constants that look like enum values 30# constants that look like enum values
11cat CL/cl.h CL/cl_ext.h CL/cl_gl.h CL/cl_gl_ext.h CL/cl_d3d10.h | 31(
32 echo '// autogenerated by h_extract'
33 cat $ALL_H |
12 perl -ne 'print "#ifdef CL_$1\nconst_iv($1)\n#endif\n" if /^#define CL_(\S+)\s+0x[0-9a-fA-F]{4}/' >enumstr.h 34 perl -ne 'print "const_iv($1)\n" if /^#define CL_(\S+)\s+0x[0-9a-fA-F]{4}/'
35) >enumstr.h
36
37# error codes
38(
39 echo '// autogenerated by h_extract'
40 echo "const_iv(SUCCESS)"
41 cat $ALL_H |
42 perl -ne 'print "const_iv($1)\n" if !/#define CL_BUILD_(?:NONE|ERROR|IN_PROGRESS)/ && /^#define CL_(\S+)\s+-\d+\s*$/'
43) >errstr.h
44
45# default constant values to 0
46(
47 echo '// autogenerated by h_extract'
48 cat constiv.h |
49 perl -ne '/const_iv\((.*)\)/ or next; print "#ifndef CL_$1\n#define CL_$1 0\n#endif\n"'
50) >default.h
13 51
14# *glGet*Info 52# *glGet*Info
15( 53(
16 <CL/cl.hpp perl -ne 'print "$1\n" if /^\s*F\((.*)\)\s*\\?\s*$/' 54 <CL/cl.hpp perl -ne 'print "$1\n" if /^\s*F\((.*)\)\s*\\?\s*$/'
17 # DEVICE_DOUBLE_FP_CONFIG 55 # DEVICE_DOUBLE_FP_CONFIG
37cl_kernel_arg_info, CL_KERNEL_ARG_TYPE_QUALIFIER, cl_kernel_arg_type_qualifier 75cl_kernel_arg_info, CL_KERNEL_ARG_TYPE_QUALIFIER, cl_kernel_arg_type_qualifier
38cl_kernel_arg_info, CL_KERNEL_ARG_NAME, STRING_CLASS 76cl_kernel_arg_info, CL_KERNEL_ARG_NAME, STRING_CLASS
39EOF 77EOF
40) >getinfo.txt 78) >getinfo.txt
41 79
42# error codes
43(
44 echo "const_iv(SUCCESS)"
45 cat CL/cl.h CL/cl_ext.h CL/cl_gl.h CL/cl_gl_ext.h CL/cl_d3d10.h |
46 perl -ne 'print "#ifdef CL_$1\nconst_iv($1)\n#endif\n" if !/#define CL_BUILD_(?:NONE|ERROR|IN_PROGRESS)/ && /^#define CL_(\S+)\s+-\d+\s*$/'
47) >errstr.h
48

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines