mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
89 lines
2.9 KiB
Perl
89 lines
2.9 KiB
Perl
#!/usr/local/bin/perl
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
# This is used to generate stub entry points. We generate a file to
|
|
# be included in the declaraion and a file to be used for expanding macros
|
|
# to represent the implementation of the stubs.
|
|
|
|
#
|
|
# if "$entry_count" is ever changed and the .inc files regenerated then
|
|
# the following issues need to be addressed:
|
|
#
|
|
# 1) The current Linux ARM code has a limitation of only having 256-3 stubs,
|
|
# as a result of the limitations of immediate values in ARM assembly.
|
|
#
|
|
# This number is verified by the IDL parser in xpcom/idl-parser/xpidl.py, as
|
|
# well as in xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp, to
|
|
# prevent generating interfaces or loading xpt files that would cause the
|
|
# stubs to run off the entries.
|
|
# If you change this number, please update that location.
|
|
|
|
# 3 entries are already 'used' by the 3 methods of nsISupports.
|
|
# 3+247+5=255 This should get us in under the Linux ARM limitation
|
|
$entry_count = 247;
|
|
$sentinel_count = 5;
|
|
|
|
$decl_name = "xptcstubsdecl.inc";
|
|
$def_name = "xptcstubsdef.inc";
|
|
|
|
##
|
|
## Write the declarations include file
|
|
##
|
|
|
|
die "Can't open $decl_name" if !open(OUTFILE, ">$decl_name");
|
|
|
|
print OUTFILE "/* generated file - DO NOT EDIT */\n\n";
|
|
print OUTFILE "/* includes ",$entry_count," stub entries, and ",
|
|
$sentinel_count," sentinel entries */\n\n";
|
|
print OUTFILE "/*\n";
|
|
print OUTFILE "* declarations of normal stubs...\n";
|
|
print OUTFILE "* 0 is QueryInterface\n";
|
|
print OUTFILE "* 1 is AddRef\n";
|
|
print OUTFILE "* 2 is Release\n";
|
|
print OUTFILE "*/\n";
|
|
print OUTFILE "#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__) && !defined(__FreeBSD__))\n";
|
|
for($i = 0; $i < $entry_count; $i++) {
|
|
print OUTFILE "NS_IMETHOD Stub",$i+3,"();\n";
|
|
}
|
|
print OUTFILE "#else\n";
|
|
for($i = 0; $i < $entry_count; $i++) {
|
|
print OUTFILE "NS_IMETHOD Stub",$i+3,"(uint64_t,uint64_t,\n";
|
|
print OUTFILE " uint64_t,uint64_t,uint64_t,uint64_t,uint64_t,uint64_t);\n";
|
|
|
|
}
|
|
print OUTFILE "#endif\n";
|
|
|
|
print OUTFILE "\n/* declarations of sentinel stubs */\n";
|
|
|
|
for($i = 0; $i < $sentinel_count; $i++) {
|
|
print OUTFILE "NS_IMETHOD Sentinel",$i,"();\n";
|
|
}
|
|
close(OUTFILE);
|
|
|
|
|
|
##
|
|
## Write the definitions include file. This assumes a macro will be used to
|
|
## expand the entries written...
|
|
##
|
|
|
|
die "Can't open $def_name" if !open(OUTFILE, ">$def_name");
|
|
|
|
## Disabled for bug 275004 - followup to fix is Bug 419604
|
|
my $warn_inc_is_generated = 0;
|
|
if ($warn_inc_is_generated) {
|
|
print OUTFILE "/* generated file - DO NOT EDIT */\n\n";
|
|
print OUTFILE "/* includes ",$entry_count," stub entries, and ",
|
|
$sentinel_count," sentinel entries */\n\n";
|
|
}
|
|
|
|
for($i = 0; $i < $entry_count; $i++) {
|
|
print OUTFILE "STUB_ENTRY(",$i+3,")\n";
|
|
}
|
|
|
|
for($i = 0; $i < $sentinel_count; $i++) {
|
|
print OUTFILE "SENTINEL_ENTRY(",$i,")\n";
|
|
}
|