Update contrib.
3 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 # This component and the accompanying materials are made available
6 # under the terms of "Eclipse Public License v1.0"
7 # which accompanies this distribution, and is available
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 # Initial Contributors:
11 # Nokia Corporation - initial contribution.
16 # Generates the egl_stubs.h header file and the eglswitchu.def
17 # file from the libeglu def file.
23 "// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).\n" .
24 "// All rights reserved.\n" .
25 "// This component and the accompanying materials are made available\n" .
26 "// under the terms of the License \"Eclipse Public License v1.0\"\n" .
27 "// which accompanies this distribution, and is available\n" .
28 "// at the URL \"http://www.eclipse.org/legal/epl-v10.html\".\n" .
30 "// Initial Contributors:\n" .
31 "// Nokia Corporation - initial contribution.\n" .
33 "// Contributors:\n" .
38 my $EGLSWITCH_HEADER = "egl_stubs.h";
39 my $EGLSWITCH_DEF = "../BWINS/eglswitchu.def";
40 my $SOURCE_DEF_SIZE = 0;
47 printf "Usage: generate_stubs.pl <EGL DEF file>\n";
48 printf "e.g. generate_stubs.pl /epoc32/include/def/win32/libegl14u.def\n";
56 die "Cannot open $EGL_DEF\n";
58 my ($dev, $ino, $mode, $nlink, $uid, $gid,
59 $rdev, $size, $atime, $mtime, $ctime,
62 # the file size could be checked by the switcher build to verify that the stub is up to date.
63 $SOURCE_DEF_SIZE= $size;
65 open HEADER_OUT, ">${EGLSWITCH_HEADER}" or
66 die "Cannot create $EGLSWITCH_HEADER\n";
68 open DEF_OUT, ">${EGLSWITCH_DEF}" or
69 die "Cannot create $EGLSWITCH_DEF\n";
71 &printHeaderStart(\*HEADER_OUT);
72 &printDefStart(\*DEF_OUT);
78 &printDefEntry(\*DEF_OUT, $maxOrdinal, $_);
79 &printHeaderEntry(\*HEADER_OUT,$maxOrdinal,$_);
81 &printDefEntry(\*DEF_OUT, $maxOrdinal, "");
82 &printHeaderEntry(\*HEADER_OUT,$maxOrdinal, "(noname)");
87 &printHeaderEnd(\*HEADER_OUT,$maxOrdinal);
88 &printDefEnd(\*DEF_OUT);
95 sub printDefStart(\$) {
97 print $fh "EXPORTS\n";
100 sub printDefEntry(\$\$\$) {
101 my ($fh, $ordinal, $comment) = @_;
102 print $fh "\tcall_vector_${ordinal} @ ${ordinal} NONAME $comment\n";
105 sub printDefEnd(\$) {
110 sub printHeaderStart(\$) {
113 print $fh "$COPYRIGHT\n".
114 "// Generated from \"$EGL_DEF\" file size: $SOURCE_DEF_SIZE\n" .
117 "void common_dispatch();\n" .
121 sub printHeaderEntry(\$\$\$) {
122 my ($fh, $ordinal, $comment) = @_;
124 print $fh "__declspec(dllexport)\n" .
125 "__declspec(naked)\n" .
126 "void call_vector_${ordinal} ()\n" .
128 "\t// ${comment}\n" .
129 "\t_asm mov eax, $ordinal\n" .
130 "\t_asm jmp common_dispatch\n" .
134 sub printHeaderEnd(\$\$) {
135 my ($fh, $maxOrdinal) = @_;
137 "#define MAX_ORDINAL $maxOrdinal\n\n";