Updated for VMS.
[p5sagit/p5-mst-13.2.git] / vms / gen_shrfls.pl
CommitLineData
a0d0e21e 1# Create global symbol declarations, transfer vector, and
2# linker options files for PerlShr.
3#
4# Input:
5# $cflags - command line qualifiers passed to cc when preprocesing perl.h
6# Note: A rather simple-minded attempt is made to restore quotes to
7# a /Define clause - use with care.
8# $objsuffix - file type (including '.') used for object files.
748a9306 9# $libperl - Perl object library.
10# $extnames - package names for static extensions (used to generate
11# linker options file entries for boot functions)
12# $rtlopt - name of options file specifying RTLs to which PerlShr.Exe
13# must be linked
a0d0e21e 14#
15# Output:
16# PerlShr_Attr.Opt - linker options file which speficies that global vars
17# be placed in NOSHR,WRT psects. Use when linking any object files
18# against PerlShr.Exe, since cc places global vars in SHR,WRT psects
19# by default.
748a9306 20# PerlShr_Bld.Opt - declares universal symbols for PerlShr.Exe
a0d0e21e 21# Perlshr_Gbl*.Mar, Perlshr_Gbl*.Obj (VAX only) - declares global symbols
22# for global vars (done here because gcc can't globaldef) and creates
23# transfer vectors for routines on a VAX.
24# PerlShr_Gbl.Opt (VAX only) - list of PerlShr_Gbl*.Obj, used for input
25# to the linker when building PerlShr.Exe.
26#
27# To do:
28# - figure out a good way to collect global vars in one psect, given that
29# we can't use globaldef because of gcc.
30# - then, check for existing files and preserve symbol and transfer vector
31# order for upward compatibility
32# - then, add GSMATCH to options file - but how do we insure that new
33# library has everything old one did
34# (i.e. /Define=DEBUGGING,EMBED,MULTIPLICITY)?
35#
36# Author: Charles Bailey bailey@genetics.upenn.edu
e518068a 37# Revised: 4-Dec-1995
a0d0e21e 38
39require 5.000;
40
41$debug = $ENV{'GEN_SHRFLS_DEBUG'};
42$cc_cmd = shift @ARGV;
4633a7c4 43
44# Someday, we'll have $GetSyI built into perl . . .
45$isvax = `\$ Write Sys\$Output F\$GetSyI(\"HW_MODEL\")` <= 1024;
46print "\$isvax: \\$isvax\\\n" if $debug;
47
a0d0e21e 48print "Input \$cc_cmd: \\$cc_cmd\\\n" if $debug;
4633a7c4 49$docc = ($cc_cmd !~ /^~~/);
a0d0e21e 50print "\$docc = $docc\n" if $debug;
51
52if ($docc) {
53 # put quotes back onto defines - they were removed by DCL on the way in
54 if (($prefix,$defines,$suffix) =
55 ($cc_cmd =~ m#(.*)/Define=(.*?)([/\s].*)#i)) {
56 $defines =~ s/^\((.*)\)$/$1/;
57 @defines = split(/,/,$defines);
58 $cc_cmd = "$prefix/Define=(" . join(',',grep($_ = "\"$_\"",@defines))
59 . ')' . $suffix;
60 }
61 print "Filtered \$cc_cmd: \\$cc_cmd\\\n" if $debug;
62
4633a7c4 63 # check for gcc - if present, we'll need to use MACRO hack to
64 # define global symbols for shared variables
65 $isvaxc = 0;
66 $isgcc = `$cc_cmd _nla0:/Version` =~ /GNU/
67 or 0; # make debug output nice
e518068a 68 $isvaxc = (!$isgcc && $isvax && `$cc_cmd /prefix=all _nla0:` =~ /IVQUAL/)
4633a7c4 69 or 0; # again, make debug output nice
70 print "\$isgcc: $isgcc\n" if $debug;
71 print "\$isvaxc: $isvaxc\n" if $debug;
72
a0d0e21e 73 if (-f 'perl.h') { $dir = '[]'; }
74 elsif (-f '[-]perl.h') { $dir = '[-]'; }
75 else { die "$0: Can't find perl.h\n"; }
76}
4633a7c4 77else {
78 ($ccvers,$cpp_file) = ($cc_cmd =~ /^~~(\w+)~~(.*)/);
79 $isgcc = $ccvers =~ /GCC/
80 or 0; # for nice debug output
81 $isvaxc = (!$isgcc && $ccvers =~ /VAXC/)
82 or 0; # again, for nice debug output
83 print "\$isgcc: \\$isgcc\\\n" if $debug;
84 print "\$isvaxc: \\$isvaxc\\\n" if $debug;
85 print "Not running cc, preprocesor output in \\$cpp_file\\\n" if $debug;
86}
a0d0e21e 87
88$objsuffix = shift @ARGV;
89print "\$objsuffix: \\$objsuffix\\\n" if $debug;
748a9306 90$dbgprefix = shift @ARGV;
91print "\$dbgprefix: \\$dbgprefix\\\n" if $debug;
92$olbsuffix = shift @ARGV;
93print "\$olbsuffix: \\$olbsuffix\\\n" if $debug;
94$libperl = "${dbgprefix}libperl$olbsuffix";
95$extnames = shift @ARGV;
96print "\$extnames: \\$extnames\\\n" if $debug;
97$rtlopt = shift @ARGV;
98print "\$rtlopt: \\$rtlopt\\\n" if $debug;
a0d0e21e 99
e518068a 100# This part gets tricky. VAXC creates global symbols for each of the
4633a7c4 101# constants in an enum if that enum is ever used as the data type of a
102# global[dr]ef. We have to detect enums which are used in this way, so we
103# can set up the constants as universal symbols, since anything which
104# #includes perl.h will want to resolve these global symbols.
105# We're using a weak test here - we basically know that the only enums
106# we need to handle now are the big one in opcode.h, and the
107# "typedef enum { ... } expectation" in perl.h, so we hard code
108# appropriate tests below. Since we can't know in general whether a given
109# enum will be used elsewhere in a globaldef, it's hard to decide a
110# priori whether its constants need to be treated as global symbols.
111sub scan_enum {
112 my($line) = @_;
113
114 return unless $isvaxc;
115
116 return unless /^\s+(OP|X)/; # we only want opcode and expectation enums
117 print "\tchecking for enum constant\n" if $debug > 1;
118 $line =~ s#/\*.+##;
119 $line =~ s/,?\s*\n?$//;
120 print "\tfiltered to \\$line\\\n" if $debug > 1;
121 if ($line =~ /(\w+)$/) {
122 print "\tvar name is \\$1\\\n" if $debug > 1;
123 $vars{$1}++;
124 }
125}
a0d0e21e 126
127sub scan_var {
128 my($line) = @_;
129
748a9306 130 print "\tchecking for global variable\n" if $debug > 1;
a0d0e21e 131 $line =~ s/INIT\(.*\)//;
132 $line =~ s/\[.*//;
133 $line =~ s/=.*//;
134 $line =~ s/\W*;?\s*$//;
748a9306 135 print "\tfiltered to \\$line\\\n" if $debug > 1;
a0d0e21e 136 if ($line =~ /(\w+)$/) {
748a9306 137 print "\tvar name is \\$1\\\n" if $debug > 1;
a0d0e21e 138 $vars{$1}++;
139 }
140}
141
142sub scan_func {
143 my($line) = @_;
144
748a9306 145 print "\tchecking for global routine\n" if $debug > 1;
a0d0e21e 146 if ( /(\w+)\s+\(/ ) {
748a9306 147 print "\troutine name is \\$1\\\n" if $debug > 1;
a0d0e21e 148 if ($1 eq 'main' || $1 eq 'perl_init_ext') {
748a9306 149 print "\tskipped\n" if $debug > 1;
a0d0e21e 150 }
4633a7c4 151 else { $fcns{$1}++ }
a0d0e21e 152 }
153}
154
155if ($docc) {
156 open(CPP,"${cc_cmd}/NoObj/PreProc=Sys\$Output ${dir}perl.h|")
157 or die "$0: Can't preprocess ${dir}perl.h: $!\n";
158}
159else {
160 open(CPP,"$cpp_file") or die "$0: Can't read $cpp_file: $!\n";
161}
162LINE: while (<CPP>) {
163 while (/^#.*vmsish\.h/i .. /^#.*perl\.h/i) {
164 while (/__VMS_PROTOTYPES__/i .. /__VMS_SEPYTOTORP__/i) {
748a9306 165 print "vms_proto>> $_" if $debug > 2;
a0d0e21e 166 &scan_func($_);
167 if (/^EXT/) { &scan_var($_); }
168 last LINE unless $_ = <CPP>;
169 }
748a9306 170 print "vmsish.h>> $_" if $debug > 2;
a0d0e21e 171 if (/^EXT/) { &scan_var($_); }
172 last LINE unless $_ = <CPP>;
173 }
174 while (/^#.*opcode\.h/i .. /^#.*perl\.h/i) {
748a9306 175 print "opcode.h>> $_" if $debug > 2;
a0d0e21e 176 if (/^OP \*\s/) { &scan_func($_); }
177 if (/^EXT/) { &scan_var($_); }
4633a7c4 178 if (/^\s+OP_/) { &scan_enum($_); }
179 last LINE unless $_ = <CPP>;
180 }
181 while (/^typedef enum/ .. /^\}/) {
182 print "global enum>> $_" if $debug > 2;
183 &scan_enum($_);
a0d0e21e 184 last LINE unless $_ = <CPP>;
185 }
186 while (/^#.*proto\.h/i .. /^#.*perl\.h/i) {
748a9306 187 print "proto.h>> $_" if $debug > 2;
a0d0e21e 188 &scan_func($_);
189 if (/^EXT/) { &scan_var($_); }
190 last LINE unless $_ = <CPP>;
191 }
748a9306 192 print $_ if $debug > 3;
a0d0e21e 193 if (/^EXT/) { &scan_var($_); }
194}
195close CPP;
196while (<DATA>) {
197 next if /^#/;
198 s/\s+#.*\n//;
4633a7c4 199 next if /^\s*$/;
a0d0e21e 200 ($key,$array) = split('=',$_);
748a9306 201 print "Adding $key to \%$array list\n" if $debug > 1;
a0d0e21e 202 ${$array}{$key}++;
203}
748a9306 204foreach (split /\s+/, $extnames) {
205 my($pkgname) = $_;
206 $pkgname =~ s/::/__/g;
4633a7c4 207 $fcns{"boot_$pkgname"}++;
208 print "Adding boot_$pkgname to \%fcns (for extension $_)\n" if $debug;
748a9306 209}
a0d0e21e 210
211# Eventually, we'll check against existing copies here, so we can add new
212# symbols to an existing options file in an upwardly-compatible manner.
213
214$marord++;
748a9306 215open(OPTBLD,">${dir}${dbgprefix}perlshr_bld.opt")
216 or die "$0: Can't write to ${dir}${dbgprefix}perlshr_bld.opt: $!\n";
a0d0e21e 217if ($isvax) {
218 open(MAR,">${dir}perlshr_gbl${marord}.mar")
219 or die "$0: Can't write to ${dir}perlshr_gbl${marord}.mar: $!\n";
748a9306 220 print MAR "\t.title perlshr_gbl$marord\n";
a0d0e21e 221}
a0d0e21e 222foreach $var (sort keys %vars) {
748a9306 223 if ($isvax) { print OPTBLD "UNIVERSAL=$var\n"; }
224 else { print OPTBLD "SYMBOL_VECTOR=($var=DATA)\n"; }
4633a7c4 225 # This hack brought to you by the lack of a globaldef in gcc.
226 if ($isgcc) {
a0d0e21e 227 if ($count++ > 200) { # max 254 psects/file
228 print MAR "\t.end\n";
229 close MAR;
230 $marord++;
231 open(MAR,">${dir}perlshr_gbl${marord}.mar")
232 or die "$0: Can't write to ${dir}perlshr_gbl${marord}.mar: $!\n";
748a9306 233 print MAR "\t.title perlshr_gbl$marord\n";
a0d0e21e 234 $count = 0;
235 }
a0d0e21e 236 print MAR "\t.psect ${var},long,pic,ovr,rd,wrt,noexe,noshr\n";
237 print MAR "\t${var}:: .blkl 1\n";
238 }
239}
240
241print MAR "\t.psect \$transfer_vec,pic,rd,nowrt,exe,shr\n" if ($isvax);
4633a7c4 242foreach $func (sort keys %fcns) {
a0d0e21e 243 if ($isvax) {
244 print MAR "\t.transfer $func\n";
245 print MAR "\t.mask $func\n";
4633a7c4 246 print MAR "\tjmp G\^${func}+2\n";
a0d0e21e 247 }
748a9306 248 else { print OPTBLD "SYMBOL_VECTOR=($func=PROCEDURE)\n"; }
a0d0e21e 249}
4633a7c4 250if ($isvax) {
251 print MAR "\t.end\n";
252 close MAR;
253}
a0d0e21e 254
4633a7c4 255open(OPTATTR,">${dir}perlshr_attr.opt")
256 or die "$0: Can't write to ${dir}perlshr_attr.opt: $!\n";
257print OPTATTR "PSECT_ATTR=\$CHAR_STRING_CONSTANTS,PIC,SHR,NOEXE,RD,NOWRT\n";
258foreach $var (sort keys %vars) {
259 print OPTATTR "PSECT_ATTR=${var},PIC,OVR,RD,NOEXE,WRT,NOSHR\n";
260}
a0d0e21e 261close OPTATTR;
4633a7c4 262
748a9306 263$incstr = 'perl,globals';
a0d0e21e 264if ($isvax) {
a0d0e21e 265 $drvrname = "Compile_shrmars.tmp_".time;
266 open (DRVR,">$drvrname") or die "$0: Can't write to $drvrname: $!\n";
267 print DRVR "\$ Set NoOn\n";
268 print DRVR "\$ Delete/NoLog/NoConfirm $drvrname;\n";
269 print DRVR "\$ old_proc_vfy = F\$Environment(\"VERIFY_PROCEDURE\")\n";
270 print DRVR "\$ old_img_vfy = F\$Environment(\"VERIFY_IMAGE\")\n";
748a9306 271 print DRVR "\$ MCR $^X -e \"\$ENV{'LIBPERL_RDT'} = (stat('$libperl'))[9]\"\n";
a0d0e21e 272 print DRVR "\$ Set Verify\n";
748a9306 273 print DRVR "\$ If F\$Search(\"$libperl\").eqs.\"\" Then Library/Object/Create $libperl\n";
a0d0e21e 274 do {
748a9306 275 $incstr .= ",perlshr_gbl$marord";
a0d0e21e 276 print DRVR "\$ Macro/NoDebug/Object=PerlShr_Gbl${marord}$objsuffix PerlShr_Gbl$marord.Mar\n";
748a9306 277 print DRVR "\$ Library/Object/Replace/Log $libperl PerlShr_Gbl${marord}$objsuffix\n";
a0d0e21e 278 } while (--$marord);
748a9306 279 # We had to have a working miniperl to run this program; it's probably the
280 # one we just built. It depended on LibPerl, which will be changed when
281 # the PerlShr_Gbl* modules get inserted, so miniperl will be out of date,
282 # and so, therefore, will all of its dependents . . .
283 # We touch LibPerl here so it'll be back 'in date', and we won't rebuild
284 # miniperl etc., and therefore LibPerl, the next time we invoke MM[KS].
a0d0e21e 285 print DRVR "\$ old_proc_vfy = F\$Verify(old_proc_vfy,old_img_vfy)\n";
748a9306 286 print DRVR "\$ MCR $^X -e \"utime 0, \$ENV{'LIBPERL_RDT'}, '$libperl'\"\n";
a0d0e21e 287 close DRVR;
a0d0e21e 288}
748a9306 289
290# Include object modules and RTLs in options file
291# Linker wants /Include and /Library on different lines
292print OPTBLD "$libperl/Include=($incstr)\n";
293print OPTBLD "$libperl/Library\n";
294open(RTLOPT,$rtlopt) or die "$0: Can't read $rtlopt: $!\n";
295while (<RTLOPT>) { print OPTBLD; }
296close RTLOPT;
297close OPTBLD;
298
299exec "\$ \@$drvrname" if $isvax;
300
301
a0d0e21e 302__END__
303
304# Oddball cases, so we can keep the perl.h scan above simple
305error=vars # declared in perl.h only when DOINIT defined by INTERN.h
306rcsid=vars # declared in perl.c
307regarglen=vars # declared in regcomp.h
308regdummy=vars # declared in regcomp.h
309regkind=vars # declared in regcomp.h
310simple=vars # declared in regcomp.h
311varies=vars # declared in regcomp.h
312watchaddr=vars # declared in run.c
313watchok=vars # declared in run.c
314yychar=vars # generated by byacc in perly.c
315yycheck=vars # generated by byacc in perly.c
316yydebug=vars # generated by byacc in perly.c
317yydefred=vars # generated by byacc in perly.c
318yydgoto=vars # generated by byacc in perly.c
319yyerrflag=vars # generated by byacc in perly.c
320yygindex=vars # generated by byacc in perly.c
321yylen=vars # generated by byacc in perly.c
322yylhs=vars # generated by byacc in perly.c
323yylval=vars # generated by byacc in perly.c
324yyname=vars # generated by byacc in perly.c
325yynerrs=vars # generated by byacc in perly.c
326yyrindex=vars # generated by byacc in perly.c
327yyrule=vars # generated by byacc in perly.c
328yysindex=vars # generated by byacc in perly.c
329yytable=vars # generated by byacc in perly.c
330yyval=vars # generated by byacc in perly.c