]>
git.saurik.com Git - apple/javascriptcore.git/blob - create_rvct_stubs
3 # Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Library General Public
7 # License as published by the Free Software Foundation; either
8 # version 2 of the License, or (at your option) any later version.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Library General Public License for more details.
15 # You should have received a copy of the GNU Library General Public License
16 # along with this library; see the file COPYING.LIB. If not, write to
17 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 # Boston, MA 02110-1301, USA.
25 my $stub_template = "";
31 my $rtype_template = quotemeta("#rtype#");
32 my $op_template = quotemeta("#op#");
34 print STDERR
"Creating RVCT stubs for $file \n";
35 open(IN
, $file) or die "No such file $file";
38 if ( /^RVCT\((.*)\)/ ) {
39 $stub_template .= $1 . "\n";
41 if ( /^DEFINE_STUB_FUNCTION\((.*), (.*)\)/ ) {
42 $stub = $stub_template;
43 $rtype = quotemeta($1);
45 $stub =~ s/$rtype_template/$rtype/g;
46 $stub =~ s/$op_template/$op/g;