This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
A few POD fixes
[perl5.git] / vms / gen_shrfls.pl
CommitLineData
a0d0e21e
LW
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
LW
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
LW
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
LW
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#
bd3fa61c 36# Author: Charles Bailey bailey@newman.upenn.edu
a0d0e21e
LW
37
38require 5.000;
39
40$debug = $ENV{'GEN_SHRFLS_DEBUG'};
a5f75d66 41
a50752f9 42print "gen_shrfls.pl Rev. 18-Dec-2003\n" if $debug;
71be2cbc 43
a5f75d66
AD
44if ($ARGV[0] eq '-f') {
45 open(INP,$ARGV[1]) or die "Can't read input file $ARGV[1]: $!\n";
46 print "Input taken from file $ARGV[1]\n" if $debug;
47 @ARGV = ();
48 while (<INP>) {
49 chomp;
50 push(@ARGV,split(/\|/,$_));
51 }
52 close INP;
53 print "Read input data | ",join(' | ',@ARGV)," |\n" if $debug > 1;
54}
55
a0d0e21e 56$cc_cmd = shift @ARGV;
4633a7c4
LW
57
58# Someday, we'll have $GetSyI built into perl . . .
a50752f9
CB
59$isvax = `\$ Write Sys\$Output \(F\$GetSyI(\"HW_MODEL\") .LE. 1024 .AND. F\$GetSyI(\"HW_MODEL\") .GT. 0\)`;
60chomp $isvax;
4633a7c4
LW
61print "\$isvax: \\$isvax\\\n" if $debug;
62
a0d0e21e 63print "Input \$cc_cmd: \\$cc_cmd\\\n" if $debug;
4633a7c4 64$docc = ($cc_cmd !~ /^~~/);
a0d0e21e
LW
65print "\$docc = $docc\n" if $debug;
66
67if ($docc) {
429a5e67
DS
68 if (-f 'perl.h') { $dir = '[]'; }
69 elsif (-f '[-]perl.h') { $dir = '[-]'; }
70 else { die "$0: Can't find perl.h\n"; }
71
de4b552e 72 $use_threads = $use_mymalloc = $case_about_case = $debugging_enabled = 0;
a15cef0c 73 $hide_mymalloc = $isgcc = $use_perlio = 0;
de4b552e 74
403396f3
CL
75 # Go see what is enabled in config.sh
76 $config = $dir . "config.sh";
429a5e67
DS
77 open CONFIG, "< $config";
78 while(<CONFIG>) {
ac25e0e7 79 $use_threads++ if /usethreads='(define|yes|true|t|y|1)'/i;
cbe4ad0c 80 $use_mymalloc++ if /usemymalloc='(define|yes|true|t|y|1)'/i;
ac25e0e7
CL
81 $care_about_case++ if /d_vms_case_sensitive_symbols='(define|yes|true|t|y|1)'/i;
82 $debugging_enabled++ if /usedebugging_perl='(define|yes|true|t|y|1)'/i;
83 $hide_mymalloc++ if /embedmymalloc='(define|yes|true|t|y|1)'/i;
de4b552e 84 $isgcc++ if /gccversion='[^']/;
ac25e0e7 85 $use_perlio++ if /useperlio='(define|yes|true|t|y|1)'/i;
429a5e67 86 }
403396f3 87 close CONFIG;
429a5e67 88
a0d0e21e
LW
89 # put quotes back onto defines - they were removed by DCL on the way in
90 if (($prefix,$defines,$suffix) =
91 ($cc_cmd =~ m#(.*)/Define=(.*?)([/\s].*)#i)) {
92 $defines =~ s/^\((.*)\)$/$1/;
429a5e67 93 $debugging_enabled ||= $defines =~ /\bDEBUGGING\b/;
a0d0e21e
LW
94 @defines = split(/,/,$defines);
95 $cc_cmd = "$prefix/Define=(" . join(',',grep($_ = "\"$_\"",@defines))
96 . ')' . $suffix;
97 }
98 print "Filtered \$cc_cmd: \\$cc_cmd\\\n" if $debug;
99
4633a7c4
LW
100 # check for gcc - if present, we'll need to use MACRO hack to
101 # define global symbols for shared variables
de4b552e 102
4633a7c4 103 print "\$isgcc: $isgcc\n" if $debug;
09b7f37c 104 print "\$debugging_enabled: $debugging_enabled\n" if $debug;
4633a7c4 105
a0d0e21e 106}
4633a7c4 107else {
a5f75d66 108 ($junk,$junk,$cpp_file,$cc_cmd) = split(/~~/,$cc_cmd,4);
482b294c 109 $isgcc = $cc_cmd =~ /case_hack/i
4633a7c4 110 or 0; # for nice debug output
09b7f37c 111 $debugging_enabled = $cc_cmd =~ /\bdebugging\b/i;
4633a7c4 112 print "\$isgcc: \\$isgcc\\\n" if $debug;
09b7f37c 113 print "\$debugging_enabled: \\$debugging_enabled\\\n" if $debug;
4633a7c4
LW
114 print "Not running cc, preprocesor output in \\$cpp_file\\\n" if $debug;
115}
a0d0e21e
LW
116
117$objsuffix = shift @ARGV;
118print "\$objsuffix: \\$objsuffix\\\n" if $debug;
748a9306
LW
119$dbgprefix = shift @ARGV;
120print "\$dbgprefix: \\$dbgprefix\\\n" if $debug;
121$olbsuffix = shift @ARGV;
122print "\$olbsuffix: \\$olbsuffix\\\n" if $debug;
123$libperl = "${dbgprefix}libperl$olbsuffix";
124$extnames = shift @ARGV;
125print "\$extnames: \\$extnames\\\n" if $debug;
126$rtlopt = shift @ARGV;
127print "\$rtlopt: \\$rtlopt\\\n" if $debug;
a0d0e21e 128
a0d0e21e
LW
129sub scan_var {
130 my($line) = @_;
71be2cbc 131 my($const) = $line =~ /^EXTCONST/;
a0d0e21e 132
748a9306 133 print "\tchecking for global variable\n" if $debug > 1;
3e3baf6d
TB
134 $line =~ s/\s*EXT/EXT/;
135 $line =~ s/INIT\s*\(.*\)//;
a0d0e21e
LW
136 $line =~ s/\[.*//;
137 $line =~ s/=.*//;
138 $line =~ s/\W*;?\s*$//;
61bb5906 139 $line =~ s/\W*\)\s*\(.*$//; # closing paren for args stripped in previous stmt
748a9306 140 print "\tfiltered to \\$line\\\n" if $debug > 1;
a0d0e21e 141 if ($line =~ /(\w+)$/) {
71be2cbc 142 print "\tvar name is \\$1\\" . ($const ? ' (const)' : '') . "\n" if $debug > 1;
143 if ($const) { $cvars{$1}++; }
144 else { $vars{$1}++; }
145 }
a0d0e21e
LW
146}
147
148sub scan_func {
149 my($line) = @_;
150
748a9306 151 print "\tchecking for global routine\n" if $debug > 1;
a15cef0c 152 $line =~ s/\b(IV|Off_t|Size_t|SSize_t|void)\b//i;
7f00e737 153 if ( $line =~ /(\w+)\s*\(/ ) {
748a9306 154 print "\troutine name is \\$1\\\n" if $debug > 1;
c46ec1f4
CB
155 if ($1 eq 'main' || $1 eq 'perl_init_ext' || $1 eq '__attribute__format__'
156 || (($1 eq 'Perl_stashpv_hvname_match') && ! $use_threads)) {
748a9306 157 print "\tskipped\n" if $debug > 1;
a0d0e21e 158 }
b6837a3b 159 else { $fcns{$1}++ }
a0d0e21e
LW
160 }
161}
162
429a5e67
DS
163# Go add some right up front if we need 'em
164if ($use_mymalloc) {
b6837a3b
CB
165 $fcns{'Perl_malloc'}++;
166 $fcns{'Perl_calloc'}++;
167 $fcns{'Perl_realloc'}++;
168 $fcns{'Perl_mfree'}++;
429a5e67
DS
169}
170
a15cef0c 171if ($use_perlio) {
32af7c23 172 $preprocess_list = "${dir}perl.h+${dir}perlapi.h,${dir}perliol.h";
a15cef0c 173} else {
32af7c23 174 $preprocess_list = "${dir}perl.h+${dir}perlapi.h";
a15cef0c
CB
175}
176
c07a80fd 177$used_expectation_enum = $used_opcode_enum = 0; # avoid warnings
a0d0e21e 178if ($docc) {
a15cef0c
CB
179 open(CPP,"${cc_cmd}/NoObj/PreProc=Sys\$Output $preprocess_list|")
180 or die "$0: Can't preprocess $preprocess_list: $!\n";
a0d0e21e
LW
181}
182else {
a5f75d66 183 open(CPP,"$cpp_file") or die "$0: Can't read preprocessed file $cpp_file: $!\n";
a0d0e21e 184}
32af7c23 185%checkh = map { $_,1 } qw( thread bytecode byterun proto perlio perlvars intrpvar thrdvar );
09b7f37c 186$ckfunc = 0;
a0d0e21e
LW
187LINE: while (<CPP>) {
188 while (/^#.*vmsish\.h/i .. /^#.*perl\.h/i) {
189 while (/__VMS_PROTOTYPES__/i .. /__VMS_SEPYTOTORP__/i) {
748a9306 190 print "vms_proto>> $_" if $debug > 2;
3e3baf6d 191 if (/^\s*EXT/) { &scan_var($_); }
b9f71c63 192 else { &scan_func($_); }
09b7f37c 193 last LINE unless defined($_ = <CPP>);
a0d0e21e 194 }
748a9306 195 print "vmsish.h>> $_" if $debug > 2;
3e3baf6d 196 if (/^\s*EXT/) { &scan_var($_); }
09b7f37c 197 last LINE unless defined($_ = <CPP>);
a0d0e21e
LW
198 }
199 while (/^#.*opcode\.h/i .. /^#.*perl\.h/i) {
748a9306 200 print "opcode.h>> $_" if $debug > 2;
a0d0e21e 201 if (/^OP \*\s/) { &scan_func($_); }
3e3baf6d 202 if (/^\s*EXT/) { &scan_var($_); }
09b7f37c 203 last LINE unless defined($_ = <CPP>);
a0d0e21e 204 }
09b7f37c
CB
205 # Check for transition to new header file
206 if (/^# \d+ "(\S+)"/) {
207 my $spec = $1;
208 # Pull name from library module or header filespec
209 $spec =~ /^(\w+)$/ or $spec =~ /(\w+)\.h/i;
210 my $name = lc $1;
a15cef0c 211 $name = 'perlio' if $name eq 'perliol';
09b7f37c
CB
212 $ckfunc = exists $checkh{$name} ? 1 : 0;
213 $scanname = $name if $ckfunc;
214 print "Header file transition: ckfunc = $ckfunc for $name.h\n" if $debug > 1;
61bb5906 215 }
09b7f37c
CB
216 if ($ckfunc) {
217 print "$scanname>> $_" if $debug > 2;
72d9590d 218 if (/^\s*EXT/) { &scan_var($_); }
09b7f37c
CB
219 else { &scan_func($_); }
220 }
221 else {
222 print $_ if $debug > 3 && ($debug > 5 || length($_));
223 if (/^\s*EXT/) { &scan_var($_); }
a0d0e21e 224 }
a0d0e21e
LW
225}
226close CPP;
b9f71c63 227
a0d0e21e
LW
228while (<DATA>) {
229 next if /^#/;
230 s/\s+#.*\n//;
4633a7c4 231 next if /^\s*$/;
a0d0e21e 232 ($key,$array) = split('=',$_);
cc391245
CB
233 if ($array eq 'vars') { $key = "PL_$key"; }
234 else { $key = "Perl_$key"; }
748a9306 235 print "Adding $key to \%$array list\n" if $debug > 1;
a0d0e21e
LW
236 ${$array}{$key}++;
237}
9ef4b0a6 238if ($debugging_enabled and $isgcc) { $vars{'colors'}++ }
748a9306
LW
239foreach (split /\s+/, $extnames) {
240 my($pkgname) = $_;
241 $pkgname =~ s/::/__/g;
4633a7c4
LW
242 $fcns{"boot_$pkgname"}++;
243 print "Adding boot_$pkgname to \%fcns (for extension $_)\n" if $debug;
748a9306 244}
a0d0e21e
LW
245
246# Eventually, we'll check against existing copies here, so we can add new
247# symbols to an existing options file in an upwardly-compatible manner.
248
249$marord++;
748a9306
LW
250open(OPTBLD,">${dir}${dbgprefix}perlshr_bld.opt")
251 or die "$0: Can't write to ${dir}${dbgprefix}perlshr_bld.opt: $!\n";
a0d0e21e
LW
252if ($isvax) {
253 open(MAR,">${dir}perlshr_gbl${marord}.mar")
254 or die "$0: Can't write to ${dir}perlshr_gbl${marord}.mar: $!\n";
748a9306 255 print MAR "\t.title perlshr_gbl$marord\n";
a0d0e21e 256}
5e4ba136 257
71be2cbc 258unless ($isgcc) {
259 print OPTBLD "PSECT_ATTR=\$GLOBAL_RO_VARS,PIC,NOEXE,RD,NOWRT,SHR\n";
260 print OPTBLD "PSECT_ATTR=\$GLOBAL_RW_VARS,PIC,NOEXE,RD,WRT,NOSHR\n";
261}
b6837a3b 262print OPTBLD "case_sensitive=yes\n" if $care_about_case;
71be2cbc 263foreach $var (sort (keys %vars,keys %cvars)) {
748a9306
LW
264 if ($isvax) { print OPTBLD "UNIVERSAL=$var\n"; }
265 else { print OPTBLD "SYMBOL_VECTOR=($var=DATA)\n"; }
4633a7c4
LW
266 # This hack brought to you by the lack of a globaldef in gcc.
267 if ($isgcc) {
a0d0e21e
LW
268 if ($count++ > 200) { # max 254 psects/file
269 print MAR "\t.end\n";
270 close MAR;
271 $marord++;
272 open(MAR,">${dir}perlshr_gbl${marord}.mar")
273 or die "$0: Can't write to ${dir}perlshr_gbl${marord}.mar: $!\n";
748a9306 274 print MAR "\t.title perlshr_gbl$marord\n";
a0d0e21e
LW
275 $count = 0;
276 }
a0d0e21e
LW
277 print MAR "\t.psect ${var},long,pic,ovr,rd,wrt,noexe,noshr\n";
278 print MAR "\t${var}:: .blkl 1\n";
279 }
280}
281
282print MAR "\t.psect \$transfer_vec,pic,rd,nowrt,exe,shr\n" if ($isvax);
4633a7c4 283foreach $func (sort keys %fcns) {
a0d0e21e
LW
284 if ($isvax) {
285 print MAR "\t.transfer $func\n";
286 print MAR "\t.mask $func\n";
4633a7c4 287 print MAR "\tjmp G\^${func}+2\n";
a0d0e21e 288 }
748a9306 289 else { print OPTBLD "SYMBOL_VECTOR=($func=PROCEDURE)\n"; }
a0d0e21e 290}
4633a7c4
LW
291if ($isvax) {
292 print MAR "\t.end\n";
293 close MAR;
294}
a0d0e21e 295
4633a7c4
LW
296open(OPTATTR,">${dir}perlshr_attr.opt")
297 or die "$0: Can't write to ${dir}perlshr_attr.opt: $!\n";
ecc0eccd 298if ($isgcc) {
71be2cbc 299 foreach $var (sort keys %cvars) {
300 print OPTATTR "PSECT_ATTR=${var},PIC,OVR,RD,NOEXE,NOWRT,SHR\n";
301 }
302 foreach $var (sort keys %vars) {
303 print OPTATTR "PSECT_ATTR=${var},PIC,OVR,RD,NOEXE,WRT,NOSHR\n";
304 }
305}
306else {
307 print OPTATTR "! No additional linker directives are needed when using DECC\n";
4633a7c4 308}
a0d0e21e 309close OPTATTR;
4633a7c4 310
b6837a3b 311$incstr = 'PERL,GLOBALS';
a0d0e21e 312if ($isvax) {
a0d0e21e
LW
313 $drvrname = "Compile_shrmars.tmp_".time;
314 open (DRVR,">$drvrname") or die "$0: Can't write to $drvrname: $!\n";
315 print DRVR "\$ Set NoOn\n";
316 print DRVR "\$ Delete/NoLog/NoConfirm $drvrname;\n";
317 print DRVR "\$ old_proc_vfy = F\$Environment(\"VERIFY_PROCEDURE\")\n";
318 print DRVR "\$ old_img_vfy = F\$Environment(\"VERIFY_IMAGE\")\n";
748a9306 319 print DRVR "\$ MCR $^X -e \"\$ENV{'LIBPERL_RDT'} = (stat('$libperl'))[9]\"\n";
a0d0e21e 320 print DRVR "\$ Set Verify\n";
748a9306 321 print DRVR "\$ If F\$Search(\"$libperl\").eqs.\"\" Then Library/Object/Create $libperl\n";
a0d0e21e 322 do {
bbce6d69 323 push(@symfiles,"perlshr_gbl$marord");
a0d0e21e 324 print DRVR "\$ Macro/NoDebug/Object=PerlShr_Gbl${marord}$objsuffix PerlShr_Gbl$marord.Mar\n";
748a9306 325 print DRVR "\$ Library/Object/Replace/Log $libperl PerlShr_Gbl${marord}$objsuffix\n";
a0d0e21e 326 } while (--$marord);
748a9306
LW
327 # We had to have a working miniperl to run this program; it's probably the
328 # one we just built. It depended on LibPerl, which will be changed when
329 # the PerlShr_Gbl* modules get inserted, so miniperl will be out of date,
330 # and so, therefore, will all of its dependents . . .
331 # We touch LibPerl here so it'll be back 'in date', and we won't rebuild
332 # miniperl etc., and therefore LibPerl, the next time we invoke MM[KS].
a0d0e21e 333 print DRVR "\$ old_proc_vfy = F\$Verify(old_proc_vfy,old_img_vfy)\n";
748a9306 334 print DRVR "\$ MCR $^X -e \"utime 0, \$ENV{'LIBPERL_RDT'}, '$libperl'\"\n";
a0d0e21e 335 close DRVR;
a0d0e21e 336}
748a9306 337
bbce6d69 338# Initial hack to permit building of compatible shareable images for a
339# given version of Perl.
340if ($ENV{PERLSHR_USE_GSMATCH}) {
424a8fe9
CB
341 if ($ENV{PERLSHR_USE_GSMATCH} eq 'INCLUDE_COMPILE_OPTIONS') {
342 # Build up a major ID. Since it can only be 8 bits, we encode the version
343 # number in the top four bits and use the bottom four for build options
344 # that'll cause incompatibilities
345 ($ver, $sub) = $] =~ /\.(\d\d\d)(\d\d)/;
e4dfc136 346 $ver += 0; $sub += 0;
424a8fe9
CB
347 $gsmatch = ($sub >= 50) ? "equal" : "lequal"; # Force an equal match for
348 # dev, but be more forgiving
349 # for releases
350
351 $ver *=16;
352 $ver += 8 if $debugging_enabled; # If DEBUGGING is set
353 $ver += 4 if $use_threads; # if we're threaded
354 $ver += 2 if $use_mymalloc; # if we're using perl's malloc
355 print OPTBLD "GSMATCH=$gsmatch,$ver,$sub\n";
356 }
357 else {
358 my $major = int($] * 1000) & 0xFF; # range 0..255
359 my $minor = int(($] * 1000 - $major) * 100 + 0.5) & 0xFF; # range 0..255
360 print OPTBLD "GSMATCH=LEQUAL,$major,$minor\n";
361 }
09b7f37c
CB
362 print OPTBLD 'CLUSTER=$$TRANSFER_VECTOR,,',
363 map(",$_$objsuffix",@symfiles), "\n";
bbce6d69 364}
36477c24 365elsif (@symfiles) { $incstr .= ',' . join(',',@symfiles); }
748a9306
LW
366# Include object modules and RTLs in options file
367# Linker wants /Include and /Library on different lines
368print OPTBLD "$libperl/Include=($incstr)\n";
369print OPTBLD "$libperl/Library\n";
a5f75d66 370open(RTLOPT,$rtlopt) or die "$0: Can't read options file $rtlopt: $!\n";
748a9306
LW
371while (<RTLOPT>) { print OPTBLD; }
372close RTLOPT;
373close OPTBLD;
374
375exec "\$ \@$drvrname" if $isvax;
376
377
a0d0e21e
LW
378__END__
379
380# Oddball cases, so we can keep the perl.h scan above simple
a0d0e21e
LW
381regkind=vars # declared in regcomp.h
382simple=vars # declared in regcomp.h
383varies=vars # declared in regcomp.h